From f0832bfdf907e4a2780e8a858636c33814fbee2f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Sklar?= Date: Thu, 8 Jan 2004 16:24:56 +0000 Subject: [PATCH 1/1] =?utf8?q?-Correcci=C3=B3n=20de=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- lib/MECON/Feriado.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.43.0