From: Tim Starling Date: Thu, 8 Jan 2009 08:04:39 +0000 (+0000) Subject: USE INDEX is the option name, it's converted to MySQL-specific FORCE INDEX by the... X-Git-Tag: 1.31.0-rc.0~43500 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22articles%22%2C%22id_article=%24ze_article%22%29%20.%20%22?a=commitdiff_plain;h=d91e83793ed382328ac45a9ae5b45460d092321d;p=lhc%2Fweb%2Fwiklou.git USE INDEX is the option name, it's converted to MySQL-specific FORCE INDEX by the Database class. --- diff --git a/includes/specials/SpecialDeletedContributions.php b/includes/specials/SpecialDeletedContributions.php index 513d25e2f9..e72d400089 100644 --- a/includes/specials/SpecialDeletedContributions.php +++ b/includes/specials/SpecialDeletedContributions.php @@ -36,7 +36,7 @@ class DeletedContribsPager extends IndexPager { 'ar_user', 'ar_user_text', 'ar_deleted' ), 'conds' => $conds, - 'options' => array( 'FORCE INDEX' => $index ) + 'options' => array( 'USE INDEX' => $index ) ); }