]> git.llucax.com Git - mecon/ai.git/commitdiff
Se pone bien el redirect, se borra un estilo deprecated.
authorLeandro Lucarella <llucax@gmail.com>
Fri, 10 Oct 2003 17:41:49 +0000 (17:41 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Fri, 10 Oct 2003 17:41:49 +0000 (17:41 +0000)
sistema/www/index.php

index 11dede83a66e5955d288bc9a066be31919794d66..035c350451a857dd49a0300f02de8336fa322c0c 100644 (file)
@@ -32,6 +32,13 @@ prepend_include_path('/var/www/sistemas/ai/sistema/local_lib');
 require_once 'MECON/HTML/Error.php';
 require_once 'permisos.php';
 
 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);
 // 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);
 // 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. {{{
 // }}}
 
 // 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';
     if ($accion & ~AI_ALTA) {
         require_once 'MECON/HTML/Image.php';
         require_once 'MECON/HTML/Link.php';
-        $marco->addBody('<div class="texto11_negro" valign="middle" align="right">');
+        $marco->addBody('<div valign="middle" align="right">');
         $link = new MECON_HTML_Link($tipo);
         $link->addContents('Nuevo');
         $img = new MECON_HTML_Image('/MECON/images/general_nuevo', 'Agregar nuevo',
         $link = new MECON_HTML_Link($tipo);
         $link->addContents('Nuevo');
         $img = new MECON_HTML_Image('/MECON/images/general_nuevo', 'Agregar nuevo',