*/
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
$this->datos = $result->fetchRow(DB_FETCHMODE_ASSOC);
}
else
- trigger_error("Ahhhhh, agente no encontrado!");
+ return false;
}
+ return true;
}
// -X2C