]> git.llucax.com Git - mecon/intranet.git/commitdiff
Se agrega el mensaje de error.
authorMyrna Degano <mdegan@mecon.gov.ar>
Mon, 16 Feb 2004 19:17:16 +0000 (19:17 +0000)
committerMyrna Degano <mdegan@mecon.gov.ar>
Mon, 16 Feb 2004 19:17:16 +0000 (19:17 +0000)
sistema/www/servicios/legajos/legajo.php

index c8a99f0574aebc0f389fd59251da8346026f3684..090625cc7d1cbf59f7cc07bb3e075f6faadead5d 100755 (executable)
@@ -10,12 +10,11 @@ require_once 'MECON/HTML/Image.php';
 require_once 'MECON/HTML/Link.php';
 require_once 'MECON/HTML/Arbol.php';
 require_once 'HTML_DietMarco.php';
+require_once 'HTML_Mensaje.php';
 
-
-
-if(!isset($_SESSION['documento']))
-{
-       header('Location: ../../servicios.php');
+if(!isset($_SESSION['documento'])) {
+    header('Location: ../../login?redirect='.urlencode($_SERVER['REQUEST_URI']));
+    exit;
 }
 $nrodoc = $_SESSION['documento'];
 
@@ -34,17 +33,17 @@ $T = new HTML_Table(array ( 'width'=>'750',
 $agente = new MECON_Agente(NULL);
 if(!($agente->buscarAgente($nrodoc)) or ($agente->buscarAgente($nrodoc) and preg_match('/^CON/',$agente->getTipo())))
 {
-       $t = new HTML_Table(array('width'=>'600','height'=>'200'));
-       $t->addRow(     array('InformaciĆ³n no disponible'),
-                               array('valign'=>'center', 'align'=>'center', 'class'=>'txt_naranja'));
-       $row_T = array($t);
-       $T->addRow($row_T,array('valign'=>'top','align'=>'left'));
+       $mensaje = new HTML_Mensaje('alerta', 'InformaciĆ³n no disponible', 300);
+        $m->addStyleSheet($mensaje->getCSS());
+       
+       $T->addRow( array($mensaje), 
+                    array('valign'=>'middle','align'=>'center'));
 
        $m->addBodyContent($T);
 
        $m->display();
 
-       die ();
+       exit;
 }
 
 $estudios = new Servicios_Legajos_Estudios($nrodoc);