Skip to content

Commit

Permalink
Fix loop)
Browse files Browse the repository at this point in the history
  • Loading branch information
lav45 committed Nov 17, 2023
1 parent a39ee10 commit d17a212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/data/BaseDataProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public function getCount()
*/
public function getTotalCount()
{
if ($this->getPagination() === false) {
if ($this->_pagination === false) {
return $this->getCount();
}
if ($this->_totalCount === null) {
Expand Down

0 comments on commit d17a212

Please sign in to comment.