From b54991f7f2bbce1f15d2b5d561eeef92194e1700 Mon Sep 17 00:00:00 2001 From: Silvio Date: Wed, 11 Aug 2010 17:50:38 -0300 Subject: Fixing iterators' indexes --- classes/iterators/IsisItemIterator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'classes/iterators/IsisItemIterator.php') diff --git a/classes/iterators/IsisItemIterator.php b/classes/iterators/IsisItemIterator.php index 9435146..f5ccd91 100644 --- a/classes/iterators/IsisItemIterator.php +++ b/classes/iterators/IsisItemIterator.php @@ -68,7 +68,7 @@ class IsisItemIterator implements Iterator * Move forward to next element. */ function next() { - if ($this->item >= $this->items) { + if ($this->item >= $this->items - 1) { $this->item = 0; ++$this->row; } @@ -81,6 +81,6 @@ class IsisItemIterator implements Iterator * Check if there is a current element after calls to rewind() or next(). */ function valid() { - return $this->row <= $this->rows; + return $this->row <= $this->rows - 1; } } -- cgit v1.2.3