]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sistemas/sistemas-permisos.php
Estandarizacion de nombres de clases. Adaptacion de Tabla a MECON_HTML_Tabla.
[mecon/samurai.git] / sistema / www / sistemas / sistemas-permisos.php
index a721f80d8af2e0291f40448b8c056c11389b359e..a1075551fea07e73604cb348383d9b7972056a90 100644 (file)
@@ -42,8 +42,8 @@
 // }}}
 //CREO LOS OBJETO NECESARIOS {{{
     $SISTEMA   = new SAMURAI_Sistema ($DB, $idSistema);
-    $TABLASIST = new Tabla ('cellpadding=2');
-    $TABLAPERM = new Tabla ('cellpadding=2');
+    $TABLASIST = new MECON_HTML_Tabla ('cellpadding=2');
+    $TABLAPERM = new MECON_HTML_Tabla ('cellpadding=2');
     $SISTEMA->setResponsable($_SESSION['samurai']['login']);
 // }}}
 //AGREGO LA INFORMACION DEL SISTEMA {{{
@@ -59,7 +59,7 @@
     $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar"></a>';
     $aHrefElim  = $aHref.'<img src="/MECON/images/general_eliminar.gif"  border="0" alt="Eliminar" ></a>';
 
-    $TABLA2 = new Tabla ('cellspacing=0');
+    $TABLA2 = new MECON_HTML_Tabla ('cellspacing=0');
     $tt = ereg_replace ('##ACCION##' , 'n', $aHref);
     $tt = ereg_replace ('##PERMISO##', 'p', $tt   );
     $tt = ereg_replace ('##OBS##'    , 'o', $tt   );
@@ -89,7 +89,7 @@
 
 // }}}
 //OPCION VOLVER {{{
-    $TABLAVOLVER = new Tabla ('cellspacing=0');
+    $TABLAVOLVER = new MECON_HTML_Tabla ('cellspacing=0');
     $row = array ('<a href="sistemas" alt="Volver a la lista de Sistemas" ><img src="/MECON/images/general_volver4.gif" border="0">&nbsp;Volver a Sistemas</a>');
     $TABLAVOLVER->addRow($row,'align=left');
 // }}}