summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-20 08:03:36 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-09-20 08:03:36 +0000
commit883bd447e3fdc48ba31784169b273ab05c3407f2 (patch)
treef6deeb8d3472a3364d767def5a4a8d62d3689ecd /roundcubemail/program
parent9e055f29453167d40511495531b666be4c4bdeee (diff)
- fixed identities sorting, to have allways identities with the same name in the same order on the list
git-svn-id: https://svn.roundcube.net/trunk@1860 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/include/rcube_user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_user.php b/roundcubemail/program/include/rcube_user.php
index 0f0301ca9..97de97b37 100644
--- a/roundcubemail/program/include/rcube_user.php
+++ b/roundcubemail/program/include/rcube_user.php
@@ -156,7 +156,7 @@ class rcube_user
WHERE del<>1
AND user_id=?
$sql_add
- ORDER BY ".$this->db->quoteIdentifier('standard')." DESC, name ASC",
+ ORDER BY ".$this->db->quoteIdentifier('standard')." DESC, name ASC, identity_id ASC",
$this->ID);
return $sql_result;