]> git.llucax.com Git - mecon/samurai.git/commitdiff
BugFixes en HTML/Perfil.php y HTML/Usuario.php.
authorMartín Marrese <marrese@gmail.com>
Mon, 16 Feb 2004 22:23:58 +0000 (22:23 +0000)
committerMartín Marrese <marrese@gmail.com>
Mon, 16 Feb 2004 22:23:58 +0000 (22:23 +0000)
lib/SAMURAI/HTML/Perfil.php
lib/SAMURAI/HTML/Usuario.php

index 92c25a6703688858e98a4ca87081660d7b11198e..72af3dcaedbb9d26b0ee2eb5452f18f5301bf6c2 100644 (file)
@@ -311,6 +311,22 @@ function SAMURAI_HTML_Perfil(&$MARCO, $id_sistema) {
             else {
                 $id_perfil = null;
             }
+            //XXX OBTENGO LA ACCION {{{
+            switch (@$_REQUEST['accion']) {
+                case 'm':
+                    $b_accion = 'Modificar';
+                    $accion = 'm';
+                    break;
+                case 'e':
+                    $b_accion = 'Eliminar';
+                    $accion = 'e';
+                    break;
+                default:
+                    $b_accion = 'Grabar';
+                    $accion = '';
+                    break;
+            }       
+            //}}}        
             $FORM    =& new MECON_HTML_QuickForm ('samurai_perfiles','post',$_SERVER['PHP_SELF']);
             $SISTEMA =& new SAMURAI_Sistema ($DB, $id_sistema);
             $PERFIL  =& new SAMURAI_Perfil ($DB, $id_perfil, $id_sistema);
@@ -353,7 +369,8 @@ function SAMURAI_HTML_Perfil(&$MARCO, $id_sistema) {
                     $FORM->addElement ('select', 'tipo_perfil', 'Tipo Perfil', array('E' => 'Externo', 'I' => 'Interno', 'D' => 'Dios'), array ('size' => '1'));
                 }
                 $FORM->addElement ('hidden', 'responsable', $responsable);
-                $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
+                $FORM->addElement ('hidden', 'accion', $accion);
+                $group[] = HTML_QuickForm::createElement('submit', 'aceptar', $b_accion);
                 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location=\''.$_SERVER['PHP_SELF'].'\';return false;'));
                 $FORM->addGroup($group,'botones');
             }
index b858e0c61250cfcb3f6b1c90ccfd138a68e6c466..8206fda995402d159a5fb4732d5b19e5ade452de 100644 (file)
@@ -195,7 +195,7 @@ function SAMURAI_HTML_Usuario(&$MARCO, $id_sistema) {
                 $login = null;
             }
             //XXX OBTENGO LA ACCION {{{
-            switch ($_REQUEST['accion']) {
+            switch (@$_REQUEST['accion']) {
                 case 'm':
                     $b_accion = 'Modificar';
                     $accion = 'm';