diff options
author | alonso <alonso@us.es> | 2009-11-04 12:41:19 +0000 |
---|---|---|
committer | alonso <alonso@us.es> | 2009-11-04 12:41:19 +0000 |
commit | b0dc2e4f68d239ce72f138c47d5762973dfa851e (patch) | |
tree | 8b22fe4101e8e527f474291ed19f4446f02a2343 /admin/WebConsole/acceso.php | |
parent | a7fa603b2d3bb05c60c61265f2bf4b561bb00ba3 (diff) |
git-svn-id: https://opengnsys.es/svn/trunk@489 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/acceso.php')
-rw-r--r-- | admin/WebConsole/acceso.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/admin/WebConsole/acceso.php b/admin/WebConsole/acceso.php new file mode 100644 index 00000000..20c6dc82 --- /dev/null +++ b/admin/WebConsole/acceso.php @@ -0,0 +1,18 @@ +<? +// ******************************************************************************************************** +// Aplicación WEB: ogAdmWebCon +// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla +// Fecha Creación: Diciembre-2003 +// Fecha Última modificación: Marzo-2005 +// Nombre del fichero: barramenu.php +// Descripción :Este fichero implementa el menu general de la Aplicación +// ******************************************************************************************************** +if(isset($_SESSION)){ // Si existe algua sesión ... + session_unset(); // Elimina variables + session_destroy(); // Destruye sesión +} +$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 |