forked from extern/egroupware
fallback to idots template set when login template set does not have login.inc.php
remove commented old tpl code
This commit is contained in:
parent
c9482613a8
commit
b4dce58bf4
13
login.php
13
login.php
@ -43,9 +43,14 @@
|
|||||||
// read the images from the login-template-set, not the (maybe not even set) users template-set
|
// read the images from the login-template-set, not the (maybe not even set) users template-set
|
||||||
$GLOBALS['egw_info']['user']['preferences']['common']['template_set'] = $GLOBALS['egw_info']['login_template_set'];
|
$GLOBALS['egw_info']['user']['preferences']['common']['template_set'] = $GLOBALS['egw_info']['login_template_set'];
|
||||||
|
|
||||||
|
if(is_file($GLOBALS['egw_info']['server']['template_dir'].'/login.inc.php'))
|
||||||
|
{
|
||||||
include($GLOBALS['egw_info']['server']['template_dir'].'/login.inc.php');
|
include($GLOBALS['egw_info']['server']['template_dir'].'/login.inc.php');
|
||||||
|
}
|
||||||
//$GLOBALS['egw_info']['server']['deny_all_logins']=true;
|
else
|
||||||
|
{
|
||||||
|
include(EGW_SERVER_ROOT . '/phpgwapi/templates/idots/login.inc.php');
|
||||||
|
}
|
||||||
|
|
||||||
// This is used for system downtime, to prevent new logins.
|
// This is used for system downtime, to prevent new logins.
|
||||||
if($GLOBALS['egw_info']['server']['deny_all_logins'])
|
if($GLOBALS['egw_info']['server']['deny_all_logins'])
|
||||||
@ -54,8 +59,6 @@
|
|||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
//$tmpl->set_file(array('login_form' => 'login.tpl'));
|
|
||||||
|
|
||||||
function check_logoutcode($code)
|
function check_logoutcode($code)
|
||||||
{
|
{
|
||||||
switch($code)
|
switch($code)
|
||||||
@ -317,7 +320,7 @@
|
|||||||
}
|
}
|
||||||
if(lang('loginscreen_message') != 'loginscreen_message*')
|
if(lang('loginscreen_message') != 'loginscreen_message*')
|
||||||
{
|
{
|
||||||
//$tmpl->set_var('lang_message',stripslashes(lang('loginscreen_message')));
|
// for now store login message in globals so it is available for the login.inc.php
|
||||||
$GLOBALS['loginscreenmessage']=stripslashes(lang('loginscreen_message'));
|
$GLOBALS['loginscreenmessage']=stripslashes(lang('loginscreen_message'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user