X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/52ec6b73aae5937cd9c04e150e6b261b8be98b01..680fec850e9496324530768194c51535c60d8cf8:/sistema/www/sel-sistema.php diff --git a/sistema/www/sel-sistema.php b/sistema/www/sel-sistema.php index d2a3428..df1afce 100644 --- a/sistema/www/sel-sistema.php +++ b/sistema/www/sel-sistema.php @@ -31,13 +31,16 @@ //AGREGO LOS ELEMENTOS DEL FORM {{{ $FORM->addElement ('header', 'cabecera', 'Seleccione el sistema con el cual quiere trabajar'); $FORM->addElement ('select', 'sistemas', 'Sistemas', $SISTEMAS, array('size' => '1')); - - //SI ESTA EL LOGIN NO LO PIDO {{{ - if (!@$_SESSION['usuario']) { - $FORM->addElement ('text', 'responsable', 'Responsable', array('size' => '30')); - $FORM->addRule ('responsable', 'El campo responsable es obligatorio', 'required'); + if (@$_GET['redirect']) { + $redirect = $_GET['redirect']; } - // }}} + elseif (@$_POST['redirect']) { + $redirect = $_POST['redirect']; + } + else { + $redirect = 'index'; + } + $FORM->addElement ('hidden', 'redirect', $redirect); $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Seleccionar'); $FORM->addGroup($group,'botones', '', ', '); // }}} @@ -51,7 +54,7 @@ $responsable =& $FORM->getElement ('responsable'); $_SESSION['usuario'] = $responsable->getValue(); } - header('Location: index'); + header('Location: '.$_POST['redirect']); } // }}} // DIBUJO LA PAGINA {{{