From 6fd73703d9c958de86baafb98e2f8b705220d556 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Mon, 25 Apr 2005 17:57:03 +0000
Subject: [PATCH] - Patch #21249 by patryk: made SQL query work with PostgreSQL
 by correcting a 'GROUP BY'-clause.

---
 includes/locale.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/includes/locale.inc b/includes/locale.inc
index 061106d7406a..1a764c6cc5bd 100644
--- a/includes/locale.inc
+++ b/includes/locale.inc
@@ -729,7 +729,7 @@ function _locale_export_po($language) {
     $result = db_query("SELECT s.lid, s.source, s.location, t.translation, t.plid, t.plural FROM {locales_source} s INNER JOIN {locales_target} t ON s.lid = t.lid WHERE t.locale = '%s' ORDER BY t.plid, t.plural", $language);
   }
   else {
-    $result = db_query("SELECT s.lid, s.source, s.location, t.plid, t.plural FROM {locales_source} s INNER JOIN {locales_target} t ON s.lid = t.lid GROUP BY s.lid ORDER BY t.plid, t.plural");
+    $result = db_query("SELECT s.lid, s.source, s.location, t.plid, t.plural FROM {locales_source} s INNER JOIN {locales_target} t ON s.lid = t.lid ORDER BY t.plid, t.plural");
   }
 
   // Build array out of the database results
-- 
GitLab