From c02064779a63ba5a383500d7771e2518d1361c6e Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Sun, 3 Apr 2005 07:27:25 +0000 Subject: [PATCH] Add seek method to ResultWrapper --- includes/Database.php | 4 ++++ 1 file changed, 4 insertions(+) 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 ); + } } #------------------------------------------------------------------------------ -- 2.20.1