]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/bandas/index.php
-Corrijo la forma de obtencion de la fecha de actualizacion de bandas
[mecon/intranet.git] / sistema / www / servicios / bandas / index.php
index 95ebc97864661779740cdfbf3e41bba00d34b6d9..5f032a647a808c3466e7016a3f7c13ec276548ae 100644 (file)
@@ -47,7 +47,7 @@ $MARCO =& new HTML_DietMarco('servicios','Bandas Horarias');
 //}}}
 
 //{{{ CHEQUEO SI EL USUARIO NO ES CONTRATADO O NO ESTA EN LAS BASES DE RRHH
-$agente =& new MECON_Agente($_SESSION['documento']);
+$agente =& new MECON_Agente($DB, $_SESSION['documento']);
 
 if(!$agente->buscarAgente($_SESSION['documento']))
 {
@@ -55,7 +55,7 @@ if(!$agente->buscarAgente($_SESSION['documento']))
        $MARCO->addStyleSheet($HTML_Mensaje->getCSS());
        $MARCO->addBodyContent($HTML_Mensaje);
        $MARCO->display();
-       die;
+       exit;
 }
 
 /* Si el agente es un contratado entonces no muestro la info */
@@ -65,7 +65,7 @@ if(preg_match('/^CON/',$agente->getTipo()))
        $MARCO->addStyleSheet($HTML_Mensaje->getCSS());
        $MARCO->addBodyContent($HTML_Mensaje);
        $MARCO->display();
-       die;
+       exit;
 }
 
 //}}}