Avoid PHP error if dispatch is called without go variable
Hanno

Hanno commited on 2019-09-13 09:34:31
Zeige 1 geänderte Dateien mit 2 Einfügungen und 0 Löschungen.

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