mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Use importexport's more robust username parsing to try to avoid missing usernames.
This commit is contained in:
parent
06fb7f72b2
commit
d18a0578b1
@ -110,7 +110,7 @@ class calendar_import_csv extends importexport_basic_import_csv {
|
||||
|
||||
// Search for direct account name, then user in accounts first
|
||||
$search = "\"$name\"";
|
||||
$id = $GLOBALS['egw']->accounts->name2id($name, 'account_fullname');
|
||||
$id = importexport_helper_functions::account_name2id($name);
|
||||
if(!$id) {
|
||||
$contacts = ExecMethod2('addressbook.addressbook_bo.search', $search,array('contact_id','account_id'),'org_name,n_family,n_given,cat_id,contact_email','','%',false,'OR',array(0,1));
|
||||
if($contacts) $id = $contacts[0]['account_id'] ? $contacts[0]['account_id'] : 'c'.$contacts[0]['contact_id'];
|
||||
|
Loading…
Reference in New Issue
Block a user