SimpleQueryPaginationAdapter: Fix getOffset interface

Breaks pagination further than page 2.

fixes #1273
This commit is contained in:
Markus Frosch 2018-01-19 11:18:52 +01:00 committed by Thomas Gelf
parent e5d996c492
commit 129be222c9
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class SimpleQueryPaginationAdapter implements Paginatable
public function getOffset()
{
return $this->query->hasOffset();
return $this->query->getOffset();
}
public function setOffset($offset)