avoid PHP warnings when argument is no string
Hanno Böck

Hanno Böck commited on 2020-02-02 12:12:24
Zeige 1 geänderte Dateien mit 1 Einfügungen und 1 Löschungen.

... ...
@@ -22,7 +22,7 @@ require_once("inc/theme.php");
22 22
 
23 23
 set_exception_handler('handle_exception');
24 24
 
25
-if (!isset($_GET['go'])) {
25
+if (!isset($_GET['go']) || !is_string($_GET['go'])) {
26 26
     die("No command");
27 27
 }
28 28
 $go = $_GET['go'];
29 29