From: Florent Bruneau Date: Mon, 18 Aug 2008 21:14:15 +0000 (+0200) Subject: Fix variable names. X-Git-Tag: xorg/0.10.0~125 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=e0effe27959ef2b9372cf20a8e717cca03af9fe4;p=platal.git Fix variable names. Signed-off-by: Florent Bruneau --- 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; }