mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 17:33:49 +01:00
Fix multi-domain handling on command line
This commit is contained in:
parent
8615b3c9fa
commit
fd4315fec3
@ -101,13 +101,16 @@
|
|||||||
exit(INVALID_OPTION);
|
exit(INVALID_OPTION);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Can't change domain once header is loaded
|
||||||
|
$_REQUEST['domain'] = $domain;
|
||||||
|
|
||||||
$GLOBALS['egw_info']['flags'] = array(
|
$GLOBALS['egw_info']['flags'] = array(
|
||||||
'disable_Template_class' => True,
|
'disable_Template_class' => True,
|
||||||
'noheader' => True,
|
'noheader' => True,
|
||||||
'nonavbar' => True,
|
'nonavbar' => True,
|
||||||
'currentapp' => 'importexport',
|
'currentapp' => 'importexport',
|
||||||
'autocreate_session_callback' => 'import_export_access',
|
'autocreate_session_callback' => 'import_export_access',
|
||||||
'login' => $user,
|
'login' => $user . '@' . $domain,
|
||||||
'passwd' => $password,
|
'passwd' => $password,
|
||||||
'noapi' => True,
|
'noapi' => True,
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user