From 018e13a6c9dab199ed9112fef2a569bab665df26 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 9 Mar 2016 00:53:03 +0100 Subject: [PATCH] UserrightsPage::makeGroupNameListForLog() was removed Deprecated since 1.21. Use in Gerrit extensions was replaced. Bug: T122754 Depends-on: If9a2764c5c15be9c07d066a52543c4c9d97e0f35 Change-Id: If45eafca7ea332475eb864f04665d0a0bf1603d1 --- RELEASE-NOTES-1.27 | 1 + includes/specials/SpecialUserrights.php | 17 ----------------- 2 files changed, 1 insertion(+), 17 deletions(-) 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 */ -- 2.20.1