From c8c298210865216a3133d7a005d46f2877fbe410 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Wed, 30 Dec 2009 08:01:17 +0000 Subject: [PATCH] Fix for r58197, removed unnecessary array_merge() --- includes/HistoryPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/HistoryPage.php b/includes/HistoryPage.php index ebbc400334..1e1a5a43d3 100644 --- a/includes/HistoryPage.php +++ b/includes/HistoryPage.php @@ -319,7 +319,7 @@ class HistoryPager extends ReverseChronologicalPager { function getQueryInfo() { $queryInfo = array( 'tables' => array('revision'), - 'fields' => array_merge( Revision::selectFields()), + 'fields' => Revision::selectFields(), 'conds' => array_merge( array('rev_page' => $this->historyPage->title->getArticleID() ), $this->conds ), 'options' => array( 'USE INDEX' => array('revision' => 'page_timestamp') ), 'join_conds' => array( 'tag_summary' => array( 'LEFT JOIN', 'ts_rev_id=rev_id' ) ), -- 2.20.1