From e08bde4def6093fde4a51da6eacf25b394a22bf3 Mon Sep 17 00:00:00 2001 From: Steven Wittens <steven@10.no-reply.drupal.org> Date: Wed, 27 Apr 2005 17:19:20 +0000 Subject: [PATCH] - PGSQL Fix: missing columns in GROUP BY (aggregator news -> sources was broken). --- modules/aggregator.module | 2 +- modules/aggregator/aggregator.module | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/aggregator.module b/modules/aggregator.module index 6f5dc378f4b8..3d33c88af694 100644 --- a/modules/aggregator.module +++ b/modules/aggregator.module @@ -956,7 +956,7 @@ function _aggregator_page_list($sql, $op, $header = '') { * Menu callback; displays all the feeds used by the aggregator. */ function aggregator_page_sources() { - $result = db_query('SELECT f.fid, f.title, f.description, f.image, MAX(i.timestamp) AS last FROM {aggregator_feed} f LEFT JOIN {aggregator_item} i ON f.fid = i.fid GROUP BY f.fid'); + $result = db_query('SELECT f.fid, f.title, f.description, f.image, MAX(i.timestamp) AS last FROM {aggregator_feed} f LEFT JOIN {aggregator_item} i ON f.fid = i.fid GROUP BY f.fid, f.title, f.description, f.image'); $output = "<div id=\"aggregator\">\n"; while ($feed = db_fetch_object($result)) { $output .= '<h2>'. check_plain($feed->title) ."</h2>\n"; diff --git a/modules/aggregator/aggregator.module b/modules/aggregator/aggregator.module index 6f5dc378f4b8..3d33c88af694 100644 --- a/modules/aggregator/aggregator.module +++ b/modules/aggregator/aggregator.module @@ -956,7 +956,7 @@ function _aggregator_page_list($sql, $op, $header = '') { * Menu callback; displays all the feeds used by the aggregator. */ function aggregator_page_sources() { - $result = db_query('SELECT f.fid, f.title, f.description, f.image, MAX(i.timestamp) AS last FROM {aggregator_feed} f LEFT JOIN {aggregator_item} i ON f.fid = i.fid GROUP BY f.fid'); + $result = db_query('SELECT f.fid, f.title, f.description, f.image, MAX(i.timestamp) AS last FROM {aggregator_feed} f LEFT JOIN {aggregator_item} i ON f.fid = i.fid GROUP BY f.fid, f.title, f.description, f.image'); $output = "<div id=\"aggregator\">\n"; while ($feed = db_fetch_object($result)) { $output .= '<h2>'. check_plain($feed->title) ."</h2>\n"; -- GitLab