X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/2dd89e44c718262ef75b7c451d947a5e866b3e67..79cc4f777b6fe9d907ccad24a2fc65246d0253ed:/sistema/www/usuarios/usuarios-abm.php diff --git a/sistema/www/usuarios/usuarios-abm.php b/sistema/www/usuarios/usuarios-abm.php index 9ef8a39..65b575d 100644 --- a/sistema/www/usuarios/usuarios-abm.php +++ b/sistema/www/usuarios/usuarios-abm.php @@ -21,9 +21,7 @@ // //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{ - if (!$SAMURAI_PERM->tiene(SAMURAI_DEVELOPER)) { -// header('Location: error') - } +$SAMURAI_PERM->chequear(SAMURAI_DEVELOPER); //}}} //REQUIRE ONCE {{{ //MECON {{{ @@ -36,7 +34,7 @@ require_once 'SAMURAI/Usuario.php'; require_once 'SAMURAI/Sistema.php'; //}}} - require_once 'HTML/Image.php'; + require_once 'MECON/HTML/Image.php'; // }}} //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { @@ -52,7 +50,7 @@ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { $validar = 1; $login = null; } - $TABLA = new Tabla ('cellspacing=0'); + $TABLA = new MECON_HTML_Tabla ('cellspacing=0'); $FORM = new MECON_HTML_QuickForm ('usuarios_abm','post','usuarios-abm'); $SISTEMA = new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']); $USUARIO = new SAMURAI_Usuario($DB, $login); @@ -64,7 +62,7 @@ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { } //}}} //AGREGO LOS DATOS A LAS TABLAS {{{ - $imagen = new HTML_Image('/MECON/images/vinetas_flecha_doble.gif'); + $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif'); $row = array ($imagen->toHtml().' SISTEMA: '.$SISTEMA->getNombre().''); $TABLA->addRow($row,'align=left'); //}}} @@ -122,7 +120,7 @@ if (!@$_SESSION['samurai']['id_sistema'] || !@$_SESSION['samurai']['login']) { // VEO SI SE CANCELO {{{ $botones = $FORM->getSubmitValue('botones'); if (@$botones['cancelar']) { - header('Location: perfiles'); + header('Location: usuarios'); } // }}} else {