From e9a9f2f6c52e41f3e85fc3ab0ee93afecd080892 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Fri, 03 Jun 2011 07:03:13 -0400 Subject: [PATCH] - Added addressbook advanced search --- program/include/rcube_result_set.php | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/program/include/rcube_result_set.php b/program/include/rcube_result_set.php index 1739cac..1036160 100644 --- a/program/include/rcube_result_set.php +++ b/program/include/rcube_result_set.php @@ -44,27 +44,27 @@ { $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; } - + } -- Gitblit v1.9.1