]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/bandas/accesos.php
- Bug en una consulta
[mecon/intranet.git] / sistema / www / servicios / bandas / accesos.php
index 660551148418055f51ff180960687da10cba4ae5..e06f3272b1656494ae313d9db64f39f8ef35b8e1 100644 (file)
@@ -7,22 +7,16 @@ require_once 'BandasNovedades/AgenteBanda.php';
 require_once 'MECON/HTML/Tabla.php';
 require_once 'HTML/Table.php';
 
-if(!isset($_SESSION['documento']))
-{
-       die ('El usuario no se encuentra logueado en la Intranet');
-}
-
-//CREO LA CONEXION A LA BASE DE DATOS
-$dbh = DB::connect("mysql://intranet:intranet@bal747f/bandas",true);
-if (DB::isError($dbh)) {
-    die ($DB->getMessage());
+if(!isset($_SESSION['documento'])) {
+    header('Location: ../../login?redirect='.urlencode($_SERVER['REQUEST_URI']));
+    exit;
 }
 
 $nrodoc = $_SESSION['documento'];
 $fecha = $_GET['fecha'];
 
 //CREO LOS OBJETOS NECESARIOS
-$agente =& new BandasNovedades_AgenteBanda($nrodoc,new date($fecha),$dbh);
+$agente =& new BandasNovedades_AgenteBanda($nrodoc,new date($fecha),$DB);
 $pagina =& new HTML_Page(array(        'doctype'=>'HTML 4.01 Transitional',
                                                                'charset'=>'iso-8859-1'));
 $pagina->updateAttributes(array('onload'=>'javascript:window.print()'));