mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
using exception / exit code 92 for "Domain XXX does NOT exist !!!"
This commit is contained in:
parent
8f20e57599
commit
e3bfbeeee9
@ -273,7 +273,7 @@ abstract class setup_cmd extends admin_cmd
|
|||||||
$domains = $GLOBALS['egw_domain'];
|
$domains = $GLOBALS['egw_domain'];
|
||||||
if ($domain) // domain to check given
|
if ($domain) // domain to check given
|
||||||
{
|
{
|
||||||
if (!isset($GLOBALS['egw_domain'][$domain])) throw new egw_exception_wrong_userinput(lang("Domain '%1' does NOT exist !!!",$domain));
|
if (!isset($GLOBALS['egw_domain'][$domain])) throw new egw_exception_wrong_userinput(lang("Domain '%1' does NOT exist !!!",$domain), 92);
|
||||||
|
|
||||||
$domains = array($domain => $GLOBALS['egw_domain'][$domain]);
|
$domains = array($domain => $GLOBALS['egw_domain'][$domain]);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user