summaryrefslogtreecommitdiff
path: root/program/include
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2012-09-17 19:47:33 +0200
committerThomas Bruederli <thomas@roundcube.net>2012-09-17 19:47:33 +0200
commit6898b420ed4eb2bd2d1933758cde27bdd305d72a (patch)
treefbe469c4a8b1aabaec6ea7ffe62b47c925b46e5b /program/include
parente8e2e76ed987d911ec878345e88d3c611a4b7b32 (diff)
Avoid saving composed FN values with only spaces (shows empty names in listing)
Diffstat (limited to 'program/include')
-rw-r--r--program/include/rcube_addressbook.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_addressbook.php b/program/include/rcube_addressbook.php
index 069ea5715..f4f255322 100644
--- a/program/include/rcube_addressbook.php
+++ b/program/include/rcube_addressbook.php
@@ -465,7 +465,7 @@ abstract class rcube_addressbook
$fn = $contact['name'];
if (!$fn) // default display name composition according to vcard standard
- $fn = join(' ', array_filter(array($contact['prefix'], $contact['firstname'], $contact['middlename'], $contact['surname'], $contact['suffix'])));
+ $fn = trim(join(' ', array_filter(array($contact['prefix'], $contact['firstname'], $contact['middlename'], $contact['surname'], $contact['suffix']))));
// use email address part for name
$email = is_array($contact['email']) ? $contact['email'][0] : $contact['email'];