]> git.llucax.com Git - mecon/intranet.git/blobdiff - sistema/www/servicios/bandas/index.php
Cambios en los nombres de los estilos de servicios, para evitar colisiones.
[mecon/intranet.git] / sistema / www / servicios / bandas / index.php
index 6f59273c8933d11eb2b2725d24e7d6907003c257..38f1b901d6c012cb71a7a8696c6e65892552a203 100644 (file)
@@ -34,6 +34,13 @@ require_once 'MECON/HTML/Image.php';
 require_once 'DB.php';
 //}}}
 
+//CHEQUEO QUE EL USUARIO YA ESTÉ LOGUEADO {{{
+if(!isset($_SESSION['documento']))
+{
+       header('Location: ../../servicios.php');
+}
+//}}}
+
 //CREO LA CONEXION A LA BASE DE DATOS {{{
 $DB = DB::connect("mysql://intranet:intranet@bal747f/bandas",true);
 if (DB::isError($DB)) {
@@ -44,7 +51,7 @@ if (DB::isError($DB)) {
 //CREO LOS OBJETOS NECESARIOS {{{
 $TABLAFORM = new MECON_HTML_Tabla ('width="500"', 'medio');
 $MARCO     = new HTML_DietMarco('servicios','Bandas Horarias');
-$FORM      = new MECON_HTML_QuickForm('bandas', 'post', 'banda_agente', '', array ('onSubmit' => "return validar(this)", 'action' => ''));
+$FORM      = new MECON_HTML_QuickForm('bandas', 'post', 'banda_agente', '', array ('action' => ''));
 $FORM->renderer->setTable($TABLAFORM);
 $TABLA     = new HTML_Table('width="760" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF"');
 $IMG      = new MECON_HTML_Image('../../images/servicios_flecha_naranja.gif');