Drop SpecialPageFactory::getList(), deprecated in 1.24
authorJames D. Forrester <jforrester@wikimedia.org>
Tue, 6 Mar 2018 17:07:47 +0000 (17:07 +0000)
committerJames D. Forrester <jforrester@wikimedia.org>
Wed, 21 Mar 2018 22:33:57 +0000 (15:33 -0700)
Change-Id: I41da0683b1dc1e6cd81e1f4f41d1f8b4d8813f85

RELEASE-NOTES-1.31
includes/specialpage/SpecialPageFactory.php

index 48b0500..f987298 100644 (file)
@@ -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".
   * 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
 * 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
index 9469e69..fdf4d52 100644 (file)
@@ -212,17 +212,6 @@ class SpecialPageFactory {
                return array_keys( self::getPageList() );
        }
 
                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
         *
        /**
         * Get the special page list as an array
         *