From: awu42 <9922yalp@gmail.com> Date: Sat, 31 Dec 2016 19:14:43 +0000 (-0500) Subject: Removed deprecated Title::moveNoAuth function X-Git-Tag: 1.31.0-rc.0~4434 X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=commitdiff_plain;h=c3f7cebf6950a68eb5aaea4ca4c040e7bc99e614 Removed deprecated Title::moveNoAuth function (deprecated since 1.25) Bug: T61113 Change-Id: I7a007dd87ea3bcbb1121738c84b0e654ba17ccbf --- diff --git a/RELEASE-NOTES-1.29 b/RELEASE-NOTES-1.29 index 7d10ad9441..14b569282c 100644 --- a/RELEASE-NOTES-1.29 +++ b/RELEASE-NOTES-1.29 @@ -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. +* Title::moveNoAuth() (deprecated in 1.25) was removed. Use MovePage class instead. == Compatibility == diff --git a/includes/Title.php b/includes/Title.php index 1125f23d46..4d496e457a 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -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