From: Tim Starling Date: Sun, 3 Apr 2005 07:27:25 +0000 (+0000) Subject: Add seek method to ResultWrapper X-Git-Tag: 1.5.0alpha1~419 X-Git-Url: http://git.cyclocoop.org/data/Luca_Pacioli_%28Gemaelde%29.jpeg?a=commitdiff_plain;h=c02064779a63ba5a383500d7771e2518d1361c6e;p=lhc%2Fweb%2Fwiklou.git Add seek method to ResultWrapper --- diff --git a/includes/Database.php b/includes/Database.php index 7fe6ae9158..fee9453a94 100644 --- a/includes/Database.php +++ b/includes/Database.php @@ -1448,6 +1448,10 @@ class ResultWrapper { unset( $this->result ); unset( $this->db ); } + + function seek( $row ) { + $this->db->dataSeek( $this->result, $row ); + } } #------------------------------------------------------------------------------