You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning
A non-numeric value encountered
ee/legacy/libraries/Pagination.php, line 585
Severity: E_WARNING
I can easily 'fix' it by casting to integer around 577
$this->offset = ($this->offset == '' or ($this->per_page > 1 and $this->offset == 1)) ? 0 : (int) $this->offset;
But I don't think that's a proper fix. I think we need to be sure the Px is a proper pagination format, and we're being too loose on the match. Hence this is not a pr, but a report.
The text was updated successfully, but these errors were encountered:
So the larger issue is in the pagination library and $this->offset not being an integer. To see the problem, put this on a template:
Open page with a url like: https://75gen:8890/about/page/P2a
I can easily 'fix' it by casting to integer around 577
But I don't think that's a proper fix. I think we need to be sure the Px is a proper pagination format, and we're being too loose on the match. Hence this is not a pr, but a report.
The text was updated successfully, but these errors were encountered: