X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/680fec850e9496324530768194c51535c60d8cf8..1dccba5bb5232c5350e84481851cb5a500df623d:/sistema/www/sistemas/sistemas.php?ds=inline
diff --git a/sistema/www/sistemas/sistemas.php b/sistema/www/sistemas/sistemas.php
index 5bfd70d..e6f1bb7 100644
--- a/sistema/www/sistemas/sistemas.php
+++ b/sistema/www/sistemas/sistemas.php
@@ -23,7 +23,7 @@
require_once 'SAMURAI/Sistema.php';
//VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
-$SAMURAI_PERM->chequear(SAMURAI_DEVELOPER);
+$SAMURAI_PERM->chequear(SAMURAI_PERM_DEVELOPER);
//}}}
$aHrefPopup = '';
$aHref = '';
@@ -41,8 +41,8 @@ $SAMURAI_PERM->chequear(SAMURAI_DEVELOPER);
$TABLA2 = new MECON_HTML_Tabla ('cellspacing=0');
$row = array ('Seleccionar otro sistema para trabajar', $aHref.'Ingresar Nuevo Sistema');
$TABLA2->addRow($row);
- $TABLA2->setColAlign(0,'left');
- $TABLA2->setColAlign(1,'right');
+ $TABLA2->updateColAttributes(0,'align="left"');
+ $TABLA2->updateColAttributes(1,'align="right"');
$TABLA = new MECON_HTML_Tabla ('cellpadding=2');
$row = array ('Id','Nombre','Modif.','Elim.','Perm.');
@@ -65,6 +65,10 @@ $SAMURAI_PERM->chequear(SAMURAI_DEVELOPER);
);
$TABLA->addRow($row);
}
+ $TABLA->updateColAttributes(0, 'width="5%"');
+ $TABLA->updateColAttributes(2, 'width="8%"');
+ $TABLA->updateColAttributes(3, 'width="8%"');
+ $TABLA->updateColAttributes(4, 'width="8%"');
//Agrego las cosas al cuerpo de la pagina