From: James D. Forrester Date: Tue, 6 Mar 2018 17:07:47 +0000 (+0000) Subject: Drop SpecialPageFactory::getList(), deprecated in 1.24 X-Git-Tag: 1.31.0-rc.0~284^2 X-Git-Url: https://git.cyclocoop.org/%20%27.%28%24debut%20%20%20%24par_page%29.%27?a=commitdiff_plain;h=fc5fe5f5ee018a2509510a0dd7ac9701ae15c841;p=lhc%2Fweb%2Fwiklou.git Drop SpecialPageFactory::getList(), deprecated in 1.24 Change-Id: I41da0683b1dc1e6cd81e1f4f41d1f8b4d8813f85 --- diff --git a/RELEASE-NOTES-1.31 b/RELEASE-NOTES-1.31 index 48b05001e4..f987298b39 100644 --- a/RELEASE-NOTES-1.31 +++ b/RELEASE-NOTES-1.31 @@ -289,6 +289,8 @@ changes to languages because of Phabricator reports. * StripState::merge() * The "free" CSS class is now only applied to unbracketed URLs in wikitext. Links written using square brackets will get the class "text" not "free". +* SpecialPageFactory::getList(), deprecated in 1.24, has been removed. You can + use ::getNames() instead. * OpenSearch::getOpenSearchTemplate(), deprecated in 1.25, has been removed. You can use ApiOpenSearch::getOpenSearchTemplate() instead. * The global function wfBaseConvert, deprecated in 1.27, has been removed. Use diff --git a/includes/specialpage/SpecialPageFactory.php b/includes/specialpage/SpecialPageFactory.php index 9469e69ce9..fdf4d52d78 100644 --- a/includes/specialpage/SpecialPageFactory.php +++ b/includes/specialpage/SpecialPageFactory.php @@ -212,17 +212,6 @@ class SpecialPageFactory { return array_keys( self::getPageList() ); } - /** - * Get the special page list as an array - * - * @deprecated since 1.24, use getNames() instead. - * @return array - */ - public static function getList() { - wfDeprecated( __FUNCTION__, '1.24' ); - return self::getPageList(); - } - /** * Get the special page list as an array *