From 4890ef5dd80abb93858b962921d501f321ef20ba Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Fri, 15 Jul 2005 13:34:29 +0000 Subject: [PATCH] fixed meberUid in PDF --- lam/lib/modules/posixGroup.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lam/lib/modules/posixGroup.inc b/lam/lib/modules/posixGroup.inc index 1b39db93..550c48aa 100644 --- a/lam/lib/modules/posixGroup.inc +++ b/lam/lib/modules/posixGroup.inc @@ -428,9 +428,10 @@ class posixGroup extends baseModule { * @see baseModule#get_pdfEntries */ function get_pdfEntries($account_type = "group") { - return array( 'posixGroup_cn' => array('' . _('Group name') . '' . $this->attributes['cn'][0] . ''), + return array( + 'posixGroup_cn' => array('' . _('Group name') . '' . $this->attributes['cn'][0] . ''), 'posixGroup_gidNumber' => array('' . _('GID number') . '' . $this->attributes['gidNumber'][0] . ''), - 'posixGroup_memberUid' => array('' . _('Group members') . '' . $this->attributes['memberUid'][0] . ''), + 'posixGroup_memberUid' => array('' . _('Group members') . '' . implode(', ', $this->attributes['memberUid']) . ''), 'posixGroup_description' => array('' . _('Description') . '' . $this->attributes['description'][0] . '')); }