diff --git a/importexport/inc/class.importexport_helper_functions.inc.php b/importexport/inc/class.importexport_helper_functions.inc.php index 57d66b0a0e..492b93b257 100755 --- a/importexport/inc/class.importexport_helper_functions.inc.php +++ b/importexport/inc/class.importexport_helper_functions.inc.php @@ -169,6 +169,11 @@ class importexport_helper_functions { { $account_lid = trim(substr(trim($account_lid), 0, -strlen(lang('Group')))); } + // Group (no comma) + else if(strpos($account_lid, lang('Group')) === 0) + { + $account_lid = trim(substr(trim($account_lid), strlen(lang('Group')))); + } if ( $account_id = $GLOBALS['egw']->accounts->name2id( $account_lid )) { $account_ids[] = $account_id;