From: Leandro Lucarella Date: Fri, 10 Oct 2003 17:41:49 +0000 (+0000) Subject: Se pone bien el redirect, se borra un estilo deprecated. X-Git-Tag: svn_import~11 X-Git-Url: https://git.llucax.com/mecon/ai.git/commitdiff_plain/315644d98ff2f5c2dd82b46d3fe8f63550f409e7 Se pone bien el redirect, se borra un estilo deprecated. --- diff --git a/sistema/www/index.php b/sistema/www/index.php index 11dede8..035c350 100644 --- a/sistema/www/index.php +++ b/sistema/www/index.php @@ -32,6 +32,13 @@ prepend_include_path('/var/www/sistemas/ai/sistema/local_lib'); require_once 'MECON/HTML/Error.php'; require_once 'permisos.php'; +// Si no está logueado, se redirige a la Intranet. {{{ +if (!@$_SESSION['usuario']) { + header('Location: /sistemas/intranet/login?redirect=' + . urlencode($_SERVER['REQUEST_URI'])); +} +// }}} + // Debug. {{{ require_once 'PEAR.php'; #PEAR::setErrorHandling(PEAR_ERROR_TRIGGER); @@ -46,16 +53,10 @@ if (DB::isError($db)) { } // }}} -// Si no está logueado, se redirige a la Intranet. {{{ -if (!@$_SESSION['usuario']) { - header('Location: /sistemas/intranet/sistemas'); -} -// }}} - // Creo el objeto de permisos y chequeo que tenga al menos un permiso para seguir. {{{ require_once 'SAMURAI/Perm.php'; $perm = new SAMURAI_Perm($_SESSION['usuario'], AI_PERM, $db); -$perm->chequear(AI_PERM_NOTICIAS, AI_PERM_SERVICIOS, AI_PERM_SISTEMAS); +$perm->chequear(); // }}} // Creo el Marco. {{{ @@ -238,7 +239,7 @@ if ($tipo) { if ($accion & ~AI_ALTA) { require_once 'MECON/HTML/Image.php'; require_once 'MECON/HTML/Link.php'; - $marco->addBody('
'); + $marco->addBody('
'); $link = new MECON_HTML_Link($tipo); $link->addContents('Nuevo'); $img = new MECON_HTML_Image('/MECON/images/general_nuevo', 'Agregar nuevo',