$result = $this->_db->query($query);
if(DB::isError($result))
die($result->getMessage());
- if( $r = $result->fetchRow() )
+ while($r = $result->fetchRow())
+ {
+ $novedad = new Novedad();
+ $novedad->codigo = $r[0];
+ array_push($this->novedades, $novedad);
$this->licencia = $r[0];
+ }
}
function BuscarNovedadesTemporales()