From 0599761bd619d90863af83d6656b0a0c48251029 Mon Sep 17 00:00:00 2001 From: Jure Kajzer Date: Tue, 27 Oct 2009 15:19:24 +0000 Subject: [PATCH] removed ts_tags from getQueryInfo. it's already added in ChangeTags::modifyDisplayQuery. Causes column abigious definition error in Oracle --- includes/HistoryPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/HistoryPage.php b/includes/HistoryPage.php index 9a620e66b4..b866a257c5 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(), array('ts_tags') ), + 'fields' => array_merge( 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