From 21206c8fbe90cbc16ea75863783caedb26bd6eb1 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Tue, 22 Sep 2015 11:29:34 -0700 Subject: [PATCH] Mark UserRights hook as deprecated Bug: T113358 Change-Id: I0b4a319f703c549da42d579063e1eadb2260fa21 --- includes/specials/SpecialUserrights.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/specials/SpecialUserrights.php b/includes/specials/SpecialUserrights.php index e91c0bde18..1ed392f0c7 100644 --- a/includes/specials/SpecialUserrights.php +++ b/includes/specials/SpecialUserrights.php @@ -274,7 +274,8 @@ class UserrightsPage extends SpecialPage { wfDebug( 'oldGroups: ' . print_r( $oldGroups, true ) . "\n" ); wfDebug( 'newGroups: ' . print_r( $newGroups, true ) . "\n" ); - Hooks::run( 'UserRights', array( &$user, $add, $remove ) ); + // Deprecated in favor of UserGroupsChanged hook + Hooks::run( 'UserRights', array( &$user, $add, $remove ), '1.26' ); if ( $newGroups != $oldGroups ) { $this->addLogEntry( $user, $oldGroups, $newGroups, $reason ); -- 2.20.1