From: Domas Mituzas Date: Mon, 6 Sep 2004 10:14:32 +0000 (+0000) Subject: yet another group by fix! X-Git-Tag: 1.5.0alpha1~2081 X-Git-Url: https://git.cyclocoop.org/admin/?a=commitdiff_plain;h=277c2f0ddc4b256c61e7bcffb608f8e8909a2720;p=lhc%2Fweb%2Fwiklou.git yet another group by fix! --- diff --git a/includes/Article.php b/includes/Article.php index e355d47bb3..779b092a02 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -706,7 +706,7 @@ class Article { WHERE old_namespace = $user AND old_title = $encDBkey AND old_user != $user - GROUP BY old_user, old_user_text + GROUP BY old_user, old_user_text, user_real_name ORDER BY timestamp DESC"; if ($limit > 0) { $sql .= ' LIMIT '.$limit; }