From 266b01a596097870005a71448a781f6efe5f7326 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mart=C3=ADn=20Marrese?= Date: Mon, 7 Jun 2004 19:48:13 +0000 Subject: [PATCH] Agrego mensages de error. --- sistema/local_lib/Servicios/Agenda.php | 3 +++ sistema/www/servicios/agenda/agenda1.php | 3 +++ 2 files changed, 6 insertions(+) diff --git a/sistema/local_lib/Servicios/Agenda.php b/sistema/local_lib/Servicios/Agenda.php index 9587c46..2559603 100644 --- a/sistema/local_lib/Servicios/Agenda.php +++ b/sistema/local_lib/Servicios/Agenda.php @@ -226,6 +226,9 @@ class Servicios_Agenda { $consulta = 'select cod_edificio, desc_edificio from agenda.edificios where cod_edificio <> 13 order by desc_edificio'; $dbh = $db->prepare($consulta); $res = $db->execute($dbh); + if (PEAR::isError($res)) { + return $res; + } while ($re = $res->fetchrow(DB_FETCHMODE_ASSOC)) { $rta[$re['cod_edificio']] = $re['desc_edificio']; } diff --git a/sistema/www/servicios/agenda/agenda1.php b/sistema/www/servicios/agenda/agenda1.php index 891b98a..1facfd4 100644 --- a/sistema/www/servicios/agenda/agenda1.php +++ b/sistema/www/servicios/agenda/agenda1.php @@ -47,6 +47,9 @@ $LINK_2 = new MECON_HTML_Link('mailto:teleco@mecon.gov.ar', 'Consultas', arra //}}} //OBTENGO LOS DATOS DE LAS BASES {{{ $EDIFICIOS = Servicios_Agenda::getEdificios($DB); +if (PEAR::isError($EDIFICIOS)) { + trigger_error('Error: ' . $EDIFICIOS->getMessage() . "\n", E_USER_ERROR); +} //}}} //AGREGO LOS ELEMENTOS AL FORM {{{ $header =& $FORM->addElement('header', 'cabecera' , $IMG1->toHtml().'Búsqueda de Internos'); -- 2.43.0