From 69a2a9e2e2bd053e183e7a86591c4efeec5a34e9 Mon Sep 17 00:00:00 2001 From: Janos SUTO Date: Thu, 25 Aug 2016 12:05:06 +0000 Subject: [PATCH] Fixing #712 --- webui/model/user/user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/model/user/user.php b/webui/model/user/user.php index c66c228b..074ea752 100644 --- a/webui/model/user/user.php +++ b/webui/model/user/user.php @@ -244,7 +244,7 @@ class ModelUserUser extends Model { if($page_len > 0) { $limit = " LIMIT " . (int)$from . ", " . (int)$page_len; } - $query = $this->db->query("SELECT " . TABLE_USER . ".uid, isadmin, username, realname, domain, MIN(email) FROM " . TABLE_USER . "," . TABLE_EMAIL . " $where_cond GROUP BY " . TABLE_USER . ".uid $_order $limit", $q); + $query = $this->db->query("SELECT " . TABLE_USER . ".uid, isadmin, username, realname, domain, MIN(email) as email FROM " . TABLE_USER . "," . TABLE_EMAIL . " $where_cond GROUP BY " . TABLE_USER . ".uid $_order $limit", $q); foreach ($query->rows as $q) {