]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/DB/Pager.php
Bugfixes.
[mecon/meconlib.git] / lib / MECON / DB / Pager.php
index 7daf5d031ca35bbc2253366a71d063d30f3cfb3e..b492bc3735d60e6ad593c3711913384da960ad55 100644 (file)
@@ -63,6 +63,10 @@ require_once 'DB.php';
 class MECON_DB_Pager extends DB_Result
 {
 
+    var $currentpage = 0;
+    var $current = 0;
+    var $to = 0;
+
     /**
     * Constructor
     *
@@ -209,7 +213,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 +222,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);
     }
 }
 ?>