//
require_once 'MECON/HTML/QuickForm.php';
require_once 'MECON/HTML/Tabla.php';
-
+ require_once 'SAMURAI/Sistema.php';
//CREO LOS OBJETOS NECESARIOS {{{
$FORM = new MECON_HTML_QuickForm ('sel_sistema','post','sel-sistema');
- $SAMURAI = new Samurai($DB);
- $SISTEMAS = $SAMURAI->getSelectSistemas();
+ $SISTEMAS = SAMURAI_Sistema::getArraySistemas($DB);
// }}}
//AGREGO LOS ELEMENTOS DEL FORM {{{
$FORM->addElement ('header', 'cabecera', 'Seleccione el sistema con el cual quiere trabajar');
//VALIDO EL FORMULARIO {{{
if ($FORM->validate()) {
$sistema =& $FORM->getElement ('sistemas');
- $tmp = $sistema->getSelected();
+ $tmp = $sistema->getSelected();
$_SESSION['samurai']['id_sistema'] = $tmp['0'];
if ($FORM->elementExists('responsable')) {