From 77579f364f44be572ea2e301c75a790b0abca5ae Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 18 Mar 2014 13:34:59 +0000 Subject: [PATCH] fixe funny "Group, Name" label, should not contain a comma --- phpgwapi/inc/class.common.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.common.inc.php b/phpgwapi/inc/class.common.inc.php index 286b952717..12274af50c 100644 --- a/phpgwapi/inc/class.common.inc.php +++ b/phpgwapi/inc/class.common.inc.php @@ -358,7 +358,7 @@ class common if ($firstname && $lastname) { - $delimiter = ', '; + $delimiter = $is_group ? ' ' : ', '; } else {