From b0b4988737d3b2785e2441dc780e1ebb34df29b4 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 15 May 2013 13:00:29 -0700 Subject: [PATCH] Fixed bug where FORCE INDEX did not make it to the SQL. Change-Id: Id19d7b2e9453faf9031a7409329376b98a2fbb17 --- includes/specials/SpecialActiveusers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/SpecialActiveusers.php b/includes/specials/SpecialActiveusers.php index 34a4135a83..38850433d3 100644 --- a/includes/specials/SpecialActiveusers.php +++ b/includes/specials/SpecialActiveusers.php @@ -109,7 +109,7 @@ class ActiveUsersPager extends UsersPager { } return array( - 'tables' => 'recentchanges', + 'tables' => array( 'recentchanges' ), 'fields' => array( 'user_name' => 'rc_user_text', // for Pager inheritance 'rc_user_text', // for Pager -- 2.20.1