2
0
mirror of https://github.com/slawkens/myaac.git synced 2025-05-16 10:59:21 +02:00

fix warning

This commit is contained in:
slawkens 2023-02-07 12:03:18 +01:00
parent f3745a2752
commit 574e361f90

@ -10,7 +10,7 @@
defined('MYAAC') or die('Direct access not allowed!');
$title = 'Changelog';
$_page = (int)$_GET['page'] ?? 0;
$_page = isset($_GET['page']) ? (int)$_GET['page'] : 0;
$limit = 30;
$offset = $_page * $limit;
$next_page = false;