From 6415560d45e9eabebc9526a74e99fdffebe01005 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Fri, 5 Jun 2009 15:49:51 +0000 Subject: [PATCH] Don't use wfDeprecated for still-used methods If the method is really deprecated, then get rid of all in-tree callers before you start spamming everyone with notices. --- includes/Article.php | 1 - 1 file changed, 1 deletion(-) diff --git a/includes/Article.php b/includes/Article.php index f3aa9af319..2d9bf5e625 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -1449,7 +1449,6 @@ class Article { * @deprecated use Article::doEdit() */ function insertNewArticle( $text, $summary, $isminor, $watchthis, $suppressRC=false, $comment=false, $bot=false ) { - wfDeprecated( __METHOD__ ); $flags = EDIT_NEW | EDIT_DEFER_UPDATES | EDIT_AUTOSUMMARY | ( $isminor ? EDIT_MINOR : 0 ) | ( $suppressRC ? EDIT_SUPPRESS_RC : 0 ) | -- 2.20.1