From: Myrna Degano Date: Mon, 16 Feb 2004 19:17:16 +0000 (+0000) Subject: Se agrega el mensaje de error. X-Git-Tag: svn_import~50 X-Git-Url: https://git.llucax.com/mecon/intranet.git/commitdiff_plain/144c33e600730c8e7896d0e2002f70766b03c765 Se agrega el mensaje de error. --- diff --git a/sistema/www/servicios/legajos/legajo.php b/sistema/www/servicios/legajos/legajo.php index c8a99f0..090625c 100755 --- a/sistema/www/servicios/legajos/legajo.php +++ b/sistema/www/servicios/legajos/legajo.php @@ -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);