Index: class.accounts_ldap.inc.php =================================================================== RCS file: /cvsroot/phpgwapi/phpgwapi/inc/class.accounts_ldap.inc.php,v retrieving revision 1.101.2.13.2.28 diff -u -r1.101.2.13.2.28 class.accounts_ldap.inc.php --- class.accounts_ldap.inc.php 30 Mar 2004 04:46:44 -0000 1.101.2.13.2.28 +++ class.accounts_ldap.inc.php 26 Apr 2004 14:56:57 -0000 @@ -740,7 +767,7 @@ $entry['cn'] = utf8_encode($this->get_fullname($account_info['account_firstname'], $account_info['account_lastname'])); $entry['uidnumber'] = $account_info['account_id']; $entry['uid'] = $account_info['account_lid']; - $entry['description'] = utf8_encode(lang('phpgw-created account')); + $entry['description'] = utf8_encode(str_replace('*','',lang('phpgw-created account'))); if ( $account_info['account_firstname'] ) { $entry['givenname'] = utf8_encode($account_info['account_firstname']); @@ -867,7 +894,7 @@ // additional attributes from the phpgw for groups $entry['objectclass'][] = 'posixGroup'; $entry['cn'] = $account_info['account_lid']; - $entry['description'] = str_replace('*', '', lang('phpgw-created group')); + $entry['description'] = utf8_encode(str_replace('*', '', lang('phpgw-created group'))); $entry['memberuid'] = $this->get_memberUIDs($account_info['account_id']); if (!$entry['memberuid']) {