]> git.llucax.com Git - mecon/samurai.git/blobdiff - sistema/www/sistemas/sistemas.php
- Terminados el Abm de Sistemas y el Abm de Permisos.
[mecon/samurai.git] / sistema / www / sistemas / sistemas.php
index 5aac445a519e0d08d486050686bdefdb55191ea9..874322b2dfe83d076fe46a55f18b21a79a3558ae 100644 (file)
 
     $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();
     }
     
     //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();
 ?>