From 2548f12cd39bc766801a45311cf8815c7b8f0c48 Mon Sep 17 00:00:00 2001 From: Manuel Nazar Anchorena Date: Tue, 14 Oct 2003 17:00:38 +0000 Subject: [PATCH] Se arreglan mas bugses. --- lib/MECON/DB/Pager.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/MECON/DB/Pager.php b/lib/MECON/DB/Pager.php index 7daf5d0..8aa5d60 100644 --- a/lib/MECON/DB/Pager.php +++ b/lib/MECON/DB/Pager.php @@ -209,7 +209,7 @@ class MECON_DB_Pager extends DB_Result if ($this->current >= $this->to) { return null; } - return $this->fetchRow($mode, $this->current); + return parent::fetchRow($mode, $this->current); } function fetchInto(&$arr, $mode=DB_FETCHMODE_DEFAULT) @@ -218,7 +218,7 @@ class MECON_DB_Pager extends DB_Result if ($this->current >= $this->to) { return null; } - return $this->fetchInto($arr, $mode, $this->current); + return parent::fetchInto($arr, $mode, $this->current); } } ?> -- 2.43.0