mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-02 19:16:39 +00:00
Code cleanup
This commit is contained in:
@@ -88,8 +88,8 @@ abstract class Controller extends BaseController
|
||||
if ($page < 1) {
|
||||
$page = 1;
|
||||
}
|
||||
if ($page > pow(2, 16)) {
|
||||
$page = pow(2, 16);
|
||||
if ($page > 2** 16) {
|
||||
$page = 2** 16;
|
||||
}
|
||||
$bag->set('page', $page);
|
||||
|
||||
|
Reference in New Issue
Block a user