$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');
}