mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +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!');
|
||||
$title = 'Changelog';
|
||||
|
||||
$_page = (int)$_GET['page'] ?? 0;
|
||||
$_page = isset($_GET['page']) ? (int)$_GET['page'] : 0;
|
||||
$limit = 30;
|
||||
$offset = $_page * $limit;
|
||||
$next_page = false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user