DataView: Fix that method getOffset() calls parent::hasOffset()

This commit is contained in:
Johannes Meyer 2015-05-19 12:22:20 +02:00
parent a629adb448
commit 4cedfce07f
1 changed files with 1 additions and 1 deletions

View File

@ -450,7 +450,7 @@ abstract class DataView implements QueryInterface, IteratorAggregate
*/
public function getOffset()
{
return $this->query->hasOffset();
return $this->query->getOffset();
}
/**