Mark UserRights hook as deprecated
authorKunal Mehta <legoktm@gmail.com>
Tue, 22 Sep 2015 18:29:34 +0000 (11:29 -0700)
committerKunal Mehta <legoktm@gmail.com>
Tue, 22 Sep 2015 18:29:54 +0000 (11:29 -0700)
Bug: T113358
Change-Id: I0b4a319f703c549da42d579063e1eadb2260fa21

includes/specials/SpecialUserrights.php

index e91c0bd..1ed392f 100644 (file)
@@ -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 );