From 38b494125c1c62a5955ccc247689af546884df1d Mon Sep 17 00:00:00 2001 From: jgen Date: Sun, 23 Feb 2014 02:15:19 -0500 Subject: [PATCH] Postgres requires you to include the GROUP BY column in the SELECT columns. Should be okay since we don't care about other columns though. --- ext/tag_list/main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/tag_list/main.php b/ext/tag_list/main.php index b8e7e976..4bc4e999 100644 --- a/ext/tag_list/main.php +++ b/ext/tag_list/main.php @@ -342,7 +342,7 @@ class TagList extends Extension { global $config; $query = " - SELECT t3.tag AS tag, t3.count AS calc_count + SELECT t3.tag AS tag, t3.count AS calc_count, it3.tag_id FROM image_tags AS it1, image_tags AS it2,