$body = '';
- $SAMURAI = new Samurai($DB,$_SESSION['samurai']['id_sistema']);
+ if (isset($_SESSION['samurai']['id_sistema'])) {
+ $SAMURAI = new Samurai($DB,$_SESSION['samurai']['id_sistema']);
+ }
+ else {
+ $SAMURAI = new Samurai($DB);
+ }
$sistemas = $SAMURAI->getSistemas();
$Elim = ereg_replace('##NUEVO##' , $sistema->getId(), $aHrefElim);
$Modif = ereg_replace('##ACCION##' , 'm' , $Modif);
$Elim = ereg_replace('##ACCION##' , 'e' , $Elim);
- $Perm = ereg_replace('##SISTEMA##', $sistema->getId(), $aHrefPerm);;
+ $Perm = ereg_replace('##SISTEMA##', $sistema->getId(), $aHrefPerm);
$fecha_inicio = $sistema->getFechaInicio();
$fecha_fin = $sistema->getFechaFin();
}
//Agrego las cosas al cuerpo de la pagina
- $body.=$TABLA2->toHtml(1);
- $body.=$TABLA->toHtml().'<BR>';
$MARCO = new Marco ('../../conf/confSecciones.php');
- $MARCO->addBody($body);
+ $MARCO->addBody($TABLA2->toHtml(1));
+ $MARCO->addBody($TABLA);
$MARCO->display();
?>