diff options
author | alonso <alonso@us.es> | 2010-03-25 11:27:30 +0000 |
---|---|---|
committer | alonso <alonso@us.es> | 2010-03-25 11:27:30 +0000 |
commit | f81a22cab9fd05859b72a20feea3a8c6748ab079 (patch) | |
tree | 450a4685beb5ee295c95dbd303be1404a2afc1a2 /admin/WebConsole/acceso.php | |
parent | 1aaabf1220643f1ba66dc90a7e29c859bd7def42 (diff) |
git-svn-id: https://opengnsys.es/svn/trunk@838 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/acceso.php')
-rw-r--r-- | admin/WebConsole/acceso.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/admin/WebConsole/acceso.php b/admin/WebConsole/acceso.php index 20c6dc82..717750cd 100644 --- a/admin/WebConsole/acceso.php +++ b/admin/WebConsole/acceso.php @@ -11,8 +11,11 @@ if(isset($_SESSION)){ // Si existe algua sesión ... session_unset(); // Elimina variables session_destroy(); // Destruye sesión } + +include_once("controlacceso.php"); + $herror=0; if (isset($_GET["herror"])) $herror=$_GET["herror"]; if (isset($_POST["herror"])) $herror=$_POST["herror"]; -Header("Location: acceso_esp.php?herror=".$herror); // Redireccionamiento a la página de inicio en el idioma por defecto -?>
\ No newline at end of file +Header("Location: acceso_".$idi.".php?herror=".$herror); // Redireccionamiento a la página de inicio en el idioma por defecto +?> |