summaryrefslogtreecommitdiff
path: root/program/include/rcube_contacts.php
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-05-14 14:38:27 +0000
committerthomascube <thomas@roundcube.net>2011-05-14 14:38:27 +0000
commit0ec7fe4efc8f6e1cd8fba5084c5c1a30cd900370 (patch)
treec69d0925cb3e3f0af6016da8b865c8715d5eb989 /program/include/rcube_contacts.php
parent491133a0b24133bdeda1a07bb1e7bd06c7346bea (diff)
Fix sort order when contact name is empty
Diffstat (limited to 'program/include/rcube_contacts.php')
-rw-r--r--program/include/rcube_contacts.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_contacts.php b/program/include/rcube_contacts.php
index e7c078f7e..687b4b111 100644
--- a/program/include/rcube_contacts.php
+++ b/program/include/rcube_contacts.php
@@ -184,7 +184,7 @@ class rcube_contacts extends rcube_addressbook
" AND c.user_id=?" .
($this->group_id ? " AND m.contactgroup_id=?" : "").
($this->filter ? " AND (".$this->filter.")" : "") .
- " ORDER BY c.name, c.email",
+ " ORDER BY ". $this->db->concat('c.name', 'c.email'),
$start_row,
$length,
$this->user_id,