diff --git a/includes/locale.inc b/includes/locale.inc index 061106d7406ae500d322272583c2b53fbf7f1899..1a764c6cc5bdb3c8a3c3bb8cf14b3eb5fe0df1b3 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