From: Florent Bruneau Date: Sat, 5 Jul 2008 16:01:58 +0000 (+0200) Subject: Join binets with ', ' instead of just ',' X-Git-Tag: xorg/0.9.17~54 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=f6de9f2cb8ebe106e9166c2bc6e29d1bcf0d934d;hp=613ba9ff7767991fff162cb65c5791c5ef0445db;p=platal.git Join binets with ', ' instead of just ',' Signed-off-by: Florent Bruneau --- 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(