diff options
author | thomascube <thomas@roundcube.net> | 2011-05-12 20:18:19 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2011-05-12 20:18:19 +0000 |
commit | e848180aaa9640de871796ca1a3e4f8110701fd6 (patch) | |
tree | 8691c816c9c8ddd4ad8ef733cc61a8bc52541cc3 /program/include/rcube_contacts.php | |
parent | caedd52361f8ba15aa6bfbc00cab7f55525f5edf (diff) |
Improve display name composition when saving contacts (#1487143), with plugin-support; allow empty names in sql address book, fall back to e-mail address in listing and vcard export
Diffstat (limited to 'program/include/rcube_contacts.php')
-rw-r--r-- | program/include/rcube_contacts.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/include/rcube_contacts.php b/program/include/rcube_contacts.php index 3c713fe19..8abc76302 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", + " ORDER BY c.name, c.email", $start_row, $length, $this->user_id, @@ -410,10 +410,10 @@ class rcube_contacts extends rcube_addressbook */ public function validate($save_data) { - // check for name input + // validate e-mail addresses $valid = parent::validate($save_data); - // require at least one e-mail address (syntax check is done later in save.inc) + // require at least one e-mail address (syntax check is already done) if ($valid && !array_filter($this->get_col_values('email', $save_data, true))) { $this->set_error('warning', 'noemailwarning'); $valid = false; |