X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/14e2988c3bc7f1aaff41cd3b502e03ffa8daff89..a30b66472173d3187a419b6d86e3096e5332bc45:/sistema/www/permisos/permisos.php diff --git a/sistema/www/permisos/permisos.php b/sistema/www/permisos/permisos.php index 19607a3..8764302 100644 --- a/sistema/www/permisos/permisos.php +++ b/sistema/www/permisos/permisos.php @@ -19,12 +19,14 @@ // // $Id$ // - //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ - if (!$SAMURAI_PERM->tiene(SAMURAI_DEVELOPER)) { -// header('Location: error') - } +$SAMURAI_PERM->setSistema(SAMURAI_PERM); +if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) { + $SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER); +} +$MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM); //}}} + require_once 'MECON/HTML/Tabla.php'; require_once 'SAMURAI/Permiso.php'; @@ -36,8 +38,8 @@ $aHElimdes = 'No se puede eliminar Permiso'; // }}} //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{ -if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { - header('Location: ./../sel-sistema'); +if (!@$_SESSION['samurai']['id_sistema']) { + header('Location: ./../sel-sistema?redirect=permisos/permisos'); } // }}} //CREO LOS OBJETOS NECESARIOS {{{