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] . '')); }