@@ -36,7 +36,7 @@ |
||
| 36 | 36 | $this->count = $count; |
| 37 | 37 | $this->last = ceil($count / $this->pageSize); |
| 38 | 38 | $this->current = min($this->last, $this->current); |
| 39 | - $this->prev = max(1, $this->current - 1); |
|
| 39 | + $this->prev = max(1, $this->current - 1); |
|
| 40 | 40 | $this->next = min($this->last, $this->current + 1); |
| 41 | 41 | $this->offset = $this->pageSize * ($this->current - 1); |
| 42 | 42 | } |