]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sel-sistema.php
Cambios. No se utiliza mas $_SESSION[samurai][id_sistema] desde dentro de las libreri...
[mecon/samurai.git] / sistema / www / sel-sistema.php
index 75ad23ca227606b8abe8327e6d27d18def1b25f7..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');
     }
         
         if ($FORM->elementExists('responsable')) {
             $responsable =& $FORM->getElement ('responsable');
-            $_SESSION['samurai']['login'] = $responsable->getValue();
+            $_SESSION['usuario'] = $responsable->getValue();
         }
         header('Location: index');
     }
 // }}}
 // DIBUJO LA PAGINA {{{
-    $_SESSION['deshabilitar_links'] = true; //MODIFICAR ESTO CUANDO SE HAGA LA FUNCION DESHABILITAR LINKS
-    $MARCO = new Marco ('../conf/confSecciones.php');
+    $MARCO->habilitarLinks(false); //MODIFICAR ESTO CUANDO SE HAGA LA FUNCION DESHABILITAR LINKS
     $MARCO->addBody($FORM);
     $MARCO->display();
 // }}}