From: Siebrand Mazeland Date: Tue, 8 Mar 2016 23:53:03 +0000 (+0100) Subject: UserrightsPage::makeGroupNameListForLog() was removed X-Git-Tag: 1.31.0-rc.0~7461^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/?a=commitdiff_plain;h=018e13a6c9dab199ed9112fef2a569bab665df26;p=lhc%2Fweb%2Fwiklou.git UserrightsPage::makeGroupNameListForLog() was removed Deprecated since 1.21. Use in Gerrit extensions was replaced. Bug: T122754 Depends-on: If9a2764c5c15be9c07d066a52543c4c9d97e0f35 Change-Id: If45eafca7ea332475eb864f04665d0a0bf1603d1 --- diff --git a/RELEASE-NOTES-1.27 b/RELEASE-NOTES-1.27 index 2f8f53a1b3..8a0ab11d0f 100644 --- a/RELEASE-NOTES-1.27 +++ b/RELEASE-NOTES-1.27 @@ -250,6 +250,7 @@ HHVM 3.1. * OutputPage::getScript() was removed (deprecated since 1.24). * OutputPage::out() was removed (deprecated since 1.22). * OutputPage::setAllowedModules() was removed (deprecated since 1.24). +* UserrightsPage::makeGroupNameListForLog() was removed (deprecated since 1.21). === Languages updated in 1.27 === diff --git a/includes/specials/SpecialUserrights.php b/includes/specials/SpecialUserrights.php index 29261f325a..7901d3708e 100644 --- a/includes/specials/SpecialUserrights.php +++ b/includes/specials/SpecialUserrights.php @@ -425,23 +425,6 @@ class UserrightsPage extends SpecialPage { } } - /** - * Make a list of group names to be stored as parameter for log entries - * - * @deprecated since 1.21; use LogFormatter instead. - * @param array $ids - * @return string - */ - function makeGroupNameListForLog( $ids ) { - wfDeprecated( __METHOD__, '1.21' ); - - if ( empty( $ids ) ) { - return ''; - } else { - return $this->makeGroupNameList( $ids ); - } - } - /** * Output a form to allow searching for a user */