- Correction bug [#1668] Variables GET non récupérées après

une ré-identification
This commit is contained in:
Benjamin Renard 2008-05-14 09:24:47 +00:00
parent 3eeb385d90
commit a8daef44f7

View file

@ -497,7 +497,12 @@ class LSsession {
*/ */
function displayLoginForm() { function displayLoginForm() {
$GLOBALS['Smarty'] -> assign('pagetitle',_('Connexion')); $GLOBALS['Smarty'] -> assign('pagetitle',_('Connexion'));
$GLOBALS['Smarty'] -> assign('loginform_action',$_SERVER['PHP_SELF']); if (isset($_GET['LSsession_logout'])) {
$GLOBALS['Smarty'] -> assign('loginform_action','index.php');
}
else {
$GLOBALS['Smarty'] -> assign('loginform_action',$_SERVER['REQUEST_URI']);
}
if (count($GLOBALS['LSconfig']['ldap_servers'])==1) { if (count($GLOBALS['LSconfig']['ldap_servers'])==1) {
$GLOBALS['Smarty'] -> assign('loginform_ldapserver_style','style="display: none"'); $GLOBALS['Smarty'] -> assign('loginform_ldapserver_style','style="display: none"');
} }