From: Aaron Schulz Date: Fri, 10 May 2013 01:10:12 +0000 (-0700) Subject: Removed unused join array from ActiveUser conds. X-Git-Tag: 1.31.0-rc.0~19717^2 X-Git-Url: http://git.cyclocoop.org/%27.parametre_url%28%20%20%20generer_action_auteur%28%27charger_plugin%27%2C%20%27update_flux%27%29%2C%27update_flux%27%2C%20%27oui%27%29.%27?a=commitdiff_plain;h=390c515c8d9e18431b5688d17fcf562aa0498945;p=lhc%2Fweb%2Fwiklou.git Removed unused join array from ActiveUser conds. * The table was not in the table array so this did not affect the SQL, but was still unused cruft. Change-Id: Ia5aa934fb6e6de9daeb0072d902df6e681575fd7 --- diff --git a/includes/specials/SpecialActiveusers.php b/includes/specials/SpecialActiveusers.php index a2978e3bcc..c84beb1016 100644 --- a/includes/specials/SpecialActiveusers.php +++ b/includes/specials/SpecialActiveusers.php @@ -120,10 +120,6 @@ class ActiveUsersPager extends UsersPager { 'GROUP BY' => array( 'rc_user_text' ), 'USE INDEX' => array( 'recentchanges' => 'rc_user_text' ) ), - 'join_conds' => array( // check for suppression blocks - 'ipblocks' => array( 'LEFT JOIN', - array( 'rc_user=ipb_user', 'ipb_deleted' => 1 ) ), - ), 'conds' => $conds ); }