diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -98,6 +98,11 @@ switch ($request) { require("pages/tutorial.php");
break;
+ case "redirect":
+ $to = $_GET['to'];
+ DoRedirect("<strong>THIS URL COULD BE UNSAFE! Please confirm!</strong><br/>", $to, $duration = "8");
+ break;
+
case "hometutorial":
header("Location: $mydomain"."tutorial");
exit;
|