From: umherirrender Date: Wed, 25 Jun 2014 18:38:19 +0000 (+0200) Subject: Remove MWNamespace::isMain() (deprecated since 1.19) X-Git-Tag: 1.31.0-rc.0~15047 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=d302f3eed6516c6296ecc92d1774762c46348fa6;p=lhc%2Fweb%2Fwiklou.git Remove MWNamespace::isMain() (deprecated since 1.19) Change-Id: I05dd24f9fcd911020b769d79430ce2dbeb71e6d4 --- diff --git a/RELEASE-NOTES-1.24 b/RELEASE-NOTES-1.24 index ed1b02e31a..ec7200a6cb 100644 --- a/RELEASE-NOTES-1.24 +++ b/RELEASE-NOTES-1.24 @@ -216,6 +216,7 @@ changes to languages because of Bugzilla reports. SpecialPageBeforeFormDisplay. * (bug 65781) Removed block warning on included {{Special:Contributions}} * Removed Skin::makeGlobalVariablesScript. (deprecated since 1.19) +* Removed MWNamespace::isMain(). (deprecated since 1.19) ==== Renamed classes ==== * CLDRPluralRuleConverter_Expression to CLDRPluralRuleConverterExpression diff --git a/includes/Namespace.php b/includes/Namespace.php index 4edddbc9b0..392f5582f8 100644 --- a/includes/Namespace.php +++ b/includes/Namespace.php @@ -88,16 +88,6 @@ class MWNamespace { return !self::isTalk( $index ); } - /** - * @see self::isSubject - * @deprecated since 1.19 Please use the more consistently named isSubject - * @return bool - */ - public static function isMain( $index ) { - wfDeprecated( __METHOD__, '1.19' ); - return self::isSubject( $index ); - } - /** * Is the given namespace a talk namespace? *