diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-01-23 18:21:45 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-01-23 18:21:45 +0000 |
commit | ce803acecb4b695567d77d5219218d5ae2b100f4 (patch) | |
tree | 3444aeafe867582ea4deb1bb57be6a7f8872cd73 /modules/aggregator.module | |
parent | c6be16d9ad742ed523bbf08020a0dca454e6f901 (diff) | |
download | brdo-ce803acecb4b695567d77d5219218d5ae2b100f4.tar.gz brdo-ce803acecb4b695567d77d5219218d5ae2b100f4.tar.bz2 |
- Patch 5330 by Adrian: PostgreSQL updates and fixes.
Diffstat (limited to 'modules/aggregator.module')
-rw-r--r-- | modules/aggregator.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/aggregator.module b/modules/aggregator.module index bf02f3abb..818f9816d 100644 --- a/modules/aggregator.module +++ b/modules/aggregator.module @@ -567,7 +567,7 @@ function aggregator_get_bundle($bid) { } function aggregator_view() { - $result = db_query("SELECT f.*, COUNT(i.iid) AS items FROM {feed} f LEFT JOIN {item} i ON f.fid = i.fid GROUP BY f.fid, f.title, f.url, f.refresh, f.checked, f.attributes, f.link, f.description ORDER BY f.title"); + $result = db_query("SELECT f.*, COUNT(i.iid) AS items FROM {feed} f LEFT JOIN {item} i ON f.fid = i.fid GROUP BY f.fid, f.title, f.url, f.refresh, f.checked, f.attributes, f.link, f.description, f.etag, f.modified, f.image ORDER BY f.title"); $output .= "<h3>". t("Feed overview") ."</h3>"; |