X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/36cdd19a3fd207a98546c3a166abdf4d5afa3e35..b12475b5fb8b24cade1c6f469ca9017871487789:/lib/MECON/Agente.php?ds=sidebyside diff --git a/lib/MECON/Agente.php b/lib/MECON/Agente.php index 839ad94..691efd3 100644 --- a/lib/MECON/Agente.php +++ b/lib/MECON/Agente.php @@ -1,36 +1,33 @@ - -// +----------------------------------------------------------------------+ -// -// $Id$ -// $Author$ -// $URL$ -// $Date$ -// $Rev$ -// + +------------------------------------------------------------------------------- +$Id$ +-----------------------------------------------------------------------------*/ #require_once 'PEAR.php'; require_once 'DB.php'; require_once 'MECON/Tiempo/Hora.php'; - - - // +X2C Class 131 :Agente /** * @package @@ -86,11 +83,8 @@ class Agente { */ function Agente($agente) // ~X2C { - if($agente !== null) { - buscarAgente($agente); - }else { - trigger_error("No se paso ningun documento!"); - } + if(! is_null($agente)) + $this->buscarAgente($agente); } // -X2C