]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/perfiles/perfiles-abm.php
- BugFix. No grababa los permisos asociados a un perfil si se seleccionaba este del...
[mecon/samurai.git] / sistema / www / perfiles / perfiles-abm.php
index cf7fb6637bd6cb6a9a5da16f194756614024bc8e..42dcacbd576eade8b130614555db4676ebcccc03 100644 (file)
@@ -23,6 +23,7 @@
 // REQUIRE_ONCE {{{
     require_once 'MECON/HTML/QuickForm.php';
     require_once 'MECON/HTML/Tabla.php';
+    require_once 'MECON/HTML/Error.php';
     require_once 'SAMURAI/Perfil.php';
     require_once 'SAMURAI/Permiso.php';
     require_once 'SAMURAI/Sistema.php';
             $res = $PERFIL->guardarDatos($aceptar->getValue());
 
             if (PEAR::isError($res)) {
-                $TABLA = new Tabla ('cellspacing=0');
-                $row = array ('<font color="red"><b>'.$res->getMessage().'</b></font>');
-                $TABLA->addRow($row,'align=left');
+                $ERROR = new MECON_HTML_Error($res->getMessage());
                 if ($aceptar->getValue() == 'Eliminar') {
                     $FORM->freeze();
                 }
     $MARCO = new Marco ('../../conf/confSecciones.php');
     $MARCO->addTitle('ABM Perfil');
     $MARCO->addBody($TABLA3);
-    if (isset($TABLA)) {
-        $MARCO->addBody($TABLA);
+    if (isset($ERROR)) {
+        $MARCO->addBody($ERROR);
     }
     $MARCO->addBody($FORM);
     $MARCO->display();