]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/DB/Pager.php
Se agrega metodo addLink().
[mecon/meconlib.git] / lib / MECON / DB / Pager.php
index 7daf5d031ca35bbc2253366a71d063d30f3cfb3e..8aa5d603f5122c4e9d6c4a63e2c1570f6de0b887 100644 (file)
@@ -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);
     }
 }
 ?>