From 96a54ef4ac60382fe33f596759deb778cdbc5b82 Mon Sep 17 00:00:00 2001 From: thomasb Date: Sat, 14 May 2011 14:38:27 +0000 Subject: Fix sort order when contact name is empty git-svn-id: https://svn.roundcube.net/trunk@4768 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/include/rcube_contacts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'roundcubemail/program/include/rcube_contacts.php') diff --git a/roundcubemail/program/include/rcube_contacts.php b/roundcubemail/program/include/rcube_contacts.php index e7c078f7e..687b4b111 100644 --- a/roundcubemail/program/include/rcube_contacts.php +++ b/roundcubemail/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, -- cgit v1.2.3