Skip to content

Commit

Permalink
BUG PaginatedList deprecated method was calling non-existent method
Browse files Browse the repository at this point in the history
  • Loading branch information
jthomerson committed Jan 15, 2013
1 parent 014f541 commit a70df3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/PaginatedList.php
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ public function setPageLimits($pageStart, $pageLength, $totalSize) {
Deprecation::notice('3.0', 'Use setPageStart, setPageLength, or setTotalItems instead.');
$this->setPageStart($pageStart);
$this->setPageLength($pageLength);
$this->setTotalSize($totalSize);
$this->setTotalItems($totalSize);
return $this;
}

Expand Down

0 comments on commit a70df3e

Please sign in to comment.