mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-27 09:49:22 +02:00
fix warning
This commit is contained in:
parent
f3745a2752
commit
574e361f90
@ -10,7 +10,7 @@
|
|||||||
defined('MYAAC') or die('Direct access not allowed!');
|
defined('MYAAC') or die('Direct access not allowed!');
|
||||||
$title = 'Changelog';
|
$title = 'Changelog';
|
||||||
|
|
||||||
$_page = (int)$_GET['page'] ?? 0;
|
$_page = isset($_GET['page']) ? (int)$_GET['page'] : 0;
|
||||||
$limit = 30;
|
$limit = 30;
|
||||||
$offset = $_page * $limit;
|
$offset = $_page * $limit;
|
||||||
$next_page = false;
|
$next_page = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user