From: Jure Kajzer Date: Tue, 27 Oct 2009 15:19:24 +0000 (+0000) Subject: removed ts_tags from getQueryInfo. it's already added in ChangeTags::modifyDisplayQue... X-Git-Tag: 1.31.0-rc.0~39079 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/operations/recherche.php?a=commitdiff_plain;h=0599761bd619d90863af83d6656b0a0c48251029;p=lhc%2Fweb%2Fwiklou.git removed ts_tags from getQueryInfo. it's already added in ChangeTags::modifyDisplayQuery. Causes column abigious definition error in Oracle --- 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' ) ),