mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-25 05:56:13 +00:00
fix: undefined index
This commit is contained in:
+1
-1
@@ -34,7 +34,7 @@ include("GameEngine/config.php");
|
|||||||
<body class="manual">
|
<body class="manual">
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
if (!ctype_digit($_GET['s'])) {
|
if (isset($_GET['s']) && !ctype_digit($_GET['s'])) {
|
||||||
$_GET['s'] = "0";
|
$_GET['s'] = "0";
|
||||||
}
|
}
|
||||||
if (!ctype_digit($_GET['typ'])) {
|
if (!ctype_digit($_GET['typ'])) {
|
||||||
|
|||||||
Reference in New Issue
Block a user