From 9e1831bf53bdddcd9e03677b066a53a5b94c581f Mon Sep 17 00:00:00 2001 From: alec Date: Fri, 3 Jun 2011 11:03:13 +0000 Subject: - Added addressbook advanced search git-svn-id: https://svn.roundcube.net/trunk@4834 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/include/rcube_result_set.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'roundcubemail/program/include/rcube_result_set.php') diff --git a/roundcubemail/program/include/rcube_result_set.php b/roundcubemail/program/include/rcube_result_set.php index 1739cacff..10361609f 100644 --- a/roundcubemail/program/include/rcube_result_set.php +++ b/roundcubemail/program/include/rcube_result_set.php @@ -44,27 +44,27 @@ class rcube_result_set { $this->records[] = $rec; } - + function iterate() { return $this->records[$this->current++]; } - + function first() { $this->current = 0; return $this->records[$this->current++]; } - + // alias for iterate() function next() { return $this->iterate(); } - + function seek($i) { $this->current = $i; } - + } -- cgit v1.2.3