diff options
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ try { $pieces = parse_url($route); - $route = $pieces['path']; + $route = isset($pieces['path']) ? $pieces['path'] : ''; $route = rtrim($route, '/'); $GLOBALS['forceopen'] = isset($_GET['forceopen']); |