X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2FAutopromote.php;h=a01465e9aeacd3c88ebe1cec3b6bc9d890cc78ed;hp=d492d196af669809a21e1420e900c1b3072507aa;hb=90232b6f36ee5a1473f2e865cc7a72d0014db4c7;hpb=8c087b9fd13d9302ec1be2176ef1ae344b3f8273 diff --git a/includes/Autopromote.php b/includes/Autopromote.php index d492d196af..a01465e9ae 100644 --- a/includes/Autopromote.php +++ b/includes/Autopromote.php @@ -35,7 +35,7 @@ class Autopromote { public static function getAutopromoteGroups( User $user ) { global $wgAutopromote; - $promote = array(); + $promote = []; foreach ( $wgAutopromote as $group => $cond ) { if ( self::recCheckCondition( $cond, $user ) ) { @@ -43,7 +43,7 @@ class Autopromote { } } - Hooks::run( 'GetAutoPromoteGroups', array( $user, &$promote ) ); + Hooks::run( 'GetAutoPromoteGroups', [ $user, &$promote ] ); return $promote; } @@ -63,7 +63,7 @@ class Autopromote { public static function getAutopromoteOnceGroups( User $user, $event ) { global $wgAutopromoteOnce; - $promote = array(); + $promote = []; if ( isset( $wgAutopromoteOnce[$event] ) && count( $wgAutopromoteOnce[$event] ) ) { $currentGroups = $user->getGroups(); @@ -104,7 +104,7 @@ class Autopromote { * @return bool Whether the condition is true */ private static function recCheckCondition( $cond, User $user ) { - $validOps = array( '&', '|', '^', '!' ); + $validOps = [ '&', '|', '^', '!' ]; if ( is_array( $cond ) && count( $cond ) >= 2 && in_array( $cond[0], $validOps ) ) { # Recursive condition @@ -144,7 +144,7 @@ class Autopromote { // If we got here, the array presumably does not contain other conditions; // it's not recursive. Pass it off to self::checkCondition. if ( !is_array( $cond ) ) { - $cond = array( $cond ); + $cond = [ $cond ]; } return self::checkCondition( $cond, $user ); @@ -177,7 +177,13 @@ class Autopromote { } return false; case APCOND_EDITCOUNT: - return $user->getEditCount() >= $cond[1]; + $reqEditCount = $cond[1]; + + // T157718: Avoid edit count lookup if specified edit count is 0 or invalid + if ( $reqEditCount <= 0 ) { + return true; + } + return $user->getEditCount() >= $reqEditCount; case APCOND_AGE: $age = time() - wfTimestampOrNull( TS_UNIX, $user->getRegistration() ); return $age >= $cond[1]; @@ -197,8 +203,8 @@ class Autopromote { return in_array( 'bot', User::getGroupPermissions( $user->getGroups() ) ); default: $result = null; - Hooks::run( 'AutopromoteCondition', array( $cond[0], - array_slice( $cond, 1 ), $user, &$result ) ); + Hooks::run( 'AutopromoteCondition', [ $cond[0], + array_slice( $cond, 1 ), $user, &$result ] ); if ( $result === null ) { throw new MWException( "Unrecognized condition {$cond[0]} for autopromotion!" ); }