]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sel-sistema.php
Cambios. No se utiliza mas $_SESSION[samurai][login] en cambio se utiliza $_SESSION...
[mecon/samurai.git] / sistema / www / sel-sistema.php
index 9c674240bf513e55e2b2976ec5e7f8080d0d1dfc..d2a3428ce78d1227f65fc99dc81dcb8b4596e7f5 100644 (file)
@@ -33,7 +33,7 @@
     $FORM->addElement ('select', 'sistemas', 'Sistemas', $SISTEMAS, array('size' => '1'));
     
     //SI ESTA EL LOGIN NO LO PIDO {{{
-    if (!@$_SESSION['samurai']['login']) {
+    if (!@$_SESSION['usuario']) {
         $FORM->addElement ('text', 'responsable', 'Responsable', array('size' => '30'));
         $FORM->addRule ('responsable', 'El campo responsable es obligatorio', 'required');
     }
@@ -49,7 +49,7 @@
         
         if ($FORM->elementExists('responsable')) {
             $responsable =& $FORM->getElement ('responsable');
-            $_SESSION['samurai']['login'] = $responsable->getValue();
+            $_SESSION['usuario'] = $responsable->getValue();
         }
         header('Location: index');
     }