mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
12 lines
342 B
PHP
12 lines
342 B
PHP
<?php
|
|
|
|
require_once('_include.php');
|
|
|
|
$config = \SimpleSAML\Configuration::getInstance();
|
|
|
|
if ($config->getBoolean('usenewui', false)) {
|
|
\SimpleSAML\Utils\HTTP::redirectTrustedURL(SimpleSAML\Module::getModuleURL('core/login'));
|
|
}
|
|
|
|
\SimpleSAML\Utils\HTTP::redirectTrustedURL(SimpleSAML\Module::getModuleURL('core/frontpage_welcome.php'));
|