From f6de9f2cb8ebe106e9166c2bc6e29d1bcf0d934d Mon Sep 17 00:00:00 2001 From: Florent Bruneau Date: Sat, 5 Jul 2008 18:01:58 +0200 Subject: [PATCH 1/1] Join binets with ', ' instead of just ',' Signed-off-by: Florent Bruneau --- include/vcard.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/vcard.inc.php b/include/vcard.inc.php index ccb8526..b11f878 100644 --- a/include/vcard.inc.php +++ b/include/vcard.inc.php @@ -92,8 +92,8 @@ class VCardIterator implements PlIterator $user['forlife'].'@'.$globals->mail->domain2); $user['virtualalias'] = $res->fetchOneCell(); - $user['gpxs_vcardjoin'] = join(',', array_map(array('VCard', 'text_encode'), $user['gpxs_name'])); - $user['binets_vcardjoin'] = join(',', array_map(array('VCard', 'text_encode'), $user['binets'])); + $user['gpxs_vcardjoin'] = join(', ', array_map(array('VCard', 'text_encode'), $user['gpxs_name'])); + $user['binets_vcardjoin'] = join(', ', array_map(array('VCard', 'text_encode'), $user['binets'])); // get photo if ($this->photos) { $res = XDB::query( -- 2.1.4