mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-19 08:00:19 +00:00
Various changes
This commit is contained in:
@@ -92,8 +92,8 @@ class Controller extends BaseController
|
||||
if ($page < 1) {
|
||||
$page = 1;
|
||||
}
|
||||
if ($page > (2 ^ 16)) {
|
||||
$page = (2 ^ 16);
|
||||
if ($page > pow(2,16)) {
|
||||
$page = pow(2,16);
|
||||
}
|
||||
$bag->set('page', $page);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user