From e0effe27959ef2b9372cf20a8e717cca03af9fe4 Mon Sep 17 00:00:00 2001 From: Florent Bruneau Date: Mon, 18 Aug 2008 23:14:15 +0200 Subject: [PATCH] Fix variable names. Signed-off-by: Florent Bruneau --- modules/carnet/feed.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/carnet/feed.inc.php b/modules/carnet/feed.inc.php index 0a24f6b..fa8290b 100644 --- a/modules/carnet/feed.inc.php +++ b/modules/carnet/feed.inc.php @@ -54,8 +54,8 @@ class CarnetFeedIterator implements PlIterator public function next() { $this->pos++; - $this->first = ($this->count > 0 && $this->pos == 1); - $this->last = ($this->count > 0 && $this->pos == $this->count); + $this->start = ($this->count > 0 && $this->pos == 1); + $this->stop = ($this->count > 0 && $this->pos == $this->count); if ($this->count == 0) { return null; } -- 2.1.4