Removed deprecated Title::moveNoAuth function
authorawu42 <9922yalp@gmail.com>
Sat, 31 Dec 2016 19:14:43 +0000 (14:14 -0500)
committerReedy <reedy@wikimedia.org>
Sun, 1 Jan 2017 18:13:33 +0000 (18:13 +0000)
(deprecated since 1.25)

Bug: T61113
Change-Id: I7a007dd87ea3bcbb1121738c84b0e654ba17ccbf

RELEASE-NOTES-1.29
includes/Title.php

index 7d10ad9..14b5692 100644 (file)
@@ -151,6 +151,7 @@ changes to languages because of Phabricator reports.
 \MediaWiki\Session\SessionManager::singleton()->getPersistedSessionId() instead.
 * Class ImageGallery (deprecated in 1.22) was removed.
   Use ImageGalleryBase::factory instead.
 \MediaWiki\Session\SessionManager::singleton()->getPersistedSessionId() instead.
 * Class ImageGallery (deprecated in 1.22) was removed.
   Use ImageGalleryBase::factory instead.
+* Title::moveNoAuth() (deprecated in 1.25) was removed. Use MovePage class instead.
 
 == Compatibility ==
 
 
 == Compatibility ==
 
index 1125f23..4d496e4 100644 (file)
@@ -3609,18 +3609,6 @@ class Title implements LinkTarget {
                );
        }
 
                );
        }
 
-       /**
-        * Move this page without authentication
-        *
-        * @deprecated since 1.25 use MovePage class instead
-        * @param Title $nt The new page Title
-        * @return array|bool True on success, getUserPermissionsErrors()-like array on failure
-        */
-       public function moveNoAuth( &$nt ) {
-               wfDeprecated( __METHOD__, '1.25' );
-               return $this->moveTo( $nt, false );
-       }
-
        /**
         * Check whether a given move operation would be valid.
         * Returns true if ok, or a getUserPermissionsErrors()-like array otherwise
        /**
         * Check whether a given move operation would be valid.
         * Returns true if ok, or a getUserPermissionsErrors()-like array otherwise