From: Roan Kattouw Date: Fri, 1 Feb 2008 14:40:14 +0000 (+0000) Subject: Removing unused global from User::pingLimiter() X-Git-Tag: 1.31.0-rc.0~49667 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=e4ea6b1e47cc981f662980cee90e5f6fc3890954;p=lhc%2Fweb%2Fwiklou.git Removing unused global from User::pingLimiter() --- diff --git a/includes/User.php b/includes/User.php index 08c7a51ac4..66ecaee548 100644 --- a/includes/User.php +++ b/includes/User.php @@ -1022,7 +1022,7 @@ class User { return $result; } - global $wgRateLimits, $wgRateLimitsExcludedGroups; + global $wgRateLimits; if( !isset( $wgRateLimits[$action] ) ) { return false; }