Fix: Quand on accède a une page directement avec paramètres sans etre identifié, les paramètres sont perdus au moment de l'identification.
This commit is contained in:
parent
ba7f926090
commit
5c54907ed7
@ -864,7 +864,10 @@ function loginfunction()
|
|||||||
print '</head>'."\n";
|
print '</head>'."\n";
|
||||||
print '<body class="body" onload="donnefocus();">';
|
print '<body class="body" onload="donnefocus();">';
|
||||||
|
|
||||||
print '<form id="login" method="post" action="' . $_SERVER['PHP_SELF'] . '" name="identification">';
|
print '<form id="login" method="post" action="';
|
||||||
|
print $_SERVER['PHP_SELF'];
|
||||||
|
print $_SERVER["QUERY_STRING"]?'?'.$_SERVER["QUERY_STRING"]:'';
|
||||||
|
print '" name="identification">';
|
||||||
|
|
||||||
print '<table cellpadding="0" cellspacing="0" border="0" align="center" width="350">';
|
print '<table cellpadding="0" cellspacing="0" border="0" align="center" width="350">';
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user