X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/e06899a60cc1bda43249f61aff28f99224b8013f..de4cfadb31bf782b45184a44ba02bb73f8cc2f77:/sistema/www/sel-sistema.php diff --git a/sistema/www/sel-sistema.php b/sistema/www/sel-sistema.php index 9c67424..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['samurai']['login']) { - $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', '', ', '); // }}} @@ -49,9 +52,9 @@ if ($FORM->elementExists('responsable')) { $responsable =& $FORM->getElement ('responsable'); - $_SESSION['samurai']['login'] = $responsable->getValue(); + $_SESSION['usuario'] = $responsable->getValue(); } - header('Location: index'); + header('Location: '.$_POST['redirect']); } // }}} // DIBUJO LA PAGINA {{{