From: Matías Sklar Date: Thu, 8 Jan 2004 16:24:56 +0000 (+0000) Subject: -Corrección de bug X-Git-Tag: svn_import~146 X-Git-Url: https://git.llucax.com/mecon/meconlib.git/commitdiff_plain/f0832bfdf907e4a2780e8a858636c33814fbee2f?hp=17eeb40fc086f03e96fcaf6bfe6581beb17be123 -Corrección de bug --- diff --git a/lib/MECON/Feriado.php b/lib/MECON/Feriado.php index ee1986f..c3487e2 100644 --- a/lib/MECON/Feriado.php +++ b/lib/MECON/Feriado.php @@ -127,7 +127,7 @@ class MECON_Feriado extends Date { $this->_tipo = isset($tipo) ? $tipo : 'laborable'; // Verificamos si hay algo en la DB. $fecha = $this->getDate(); - $datos = $this->_db->getRow("SELECT * FROM novedades.feriados WHERE fecha = '$fecha'", null, DB_FETCH_ASSOC); + $datos = $this->_db->getRow("SELECT * FROM novedades.feriados WHERE fecha = '$fecha'", null, DB_FETCHMODE_ASSOC); // Si hay un error, lo pasamos a quien nos llama. if (DB::isError($datos)) { return $datos;