X-Git-Url: https://git.llucax.com/mecon/samurai.git/blobdiff_plain/c64a4b5ee229adce6e0d0adb68c73ddb4f8a2e72..0ecc42815b25c93505bdc63406044ebd4c37283b:/sistema/www/sistemas/sistemas.php diff --git a/sistema/www/sistemas/sistemas.php b/sistema/www/sistemas/sistemas.php index 5aac445..874322b 100644 --- a/sistema/www/sistemas/sistemas.php +++ b/sistema/www/sistemas/sistemas.php @@ -32,7 +32,12 @@ $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(); @@ -49,7 +54,7 @@ $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(); @@ -71,10 +76,9 @@ } //Agrego las cosas al cuerpo de la pagina - $body.=$TABLA2->toHtml(1); - $body.=$TABLA->toHtml().'
'; $MARCO = new Marco ('../../conf/confSecciones.php'); - $MARCO->addBody($body); + $MARCO->addBody($TABLA2->toHtml(1)); + $MARCO->addBody($TABLA); $MARCO->display(); ?>