forked from extern/egroupware
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 for direct account name, then user in accounts first
|
||||||
$search = "\"$name\"";
|
$search = "\"$name\"";
|
||||||
$id = $GLOBALS['egw']->accounts->name2id($name, 'account_fullname');
|
$id = importexport_helper_functions::account_name2id($name);
|
||||||
if(!$id) {
|
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));
|
$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'];
|
if($contacts) $id = $contacts[0]['account_id'] ? $contacts[0]['account_id'] : 'c'.$contacts[0]['contact_id'];
|
||||||
|
Loading…
Reference in New Issue
Block a user