From: Alexander Ebert Date: Thu, 3 Nov 2011 14:31:16 +0000 (+0100) Subject: Fixed path if components were removed X-Git-Tag: 2.0.0_Beta_1~1628^2~3 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=40e6502196ee1e804de5c3a71085648410d0ce72;p=GitHub%2FWoltLab%2FWCF.git Fixed path if components were removed --- diff --git a/wcfsetup/install/files/lib/system/request/RouteHandler.class.php b/wcfsetup/install/files/lib/system/request/RouteHandler.class.php index c814fa8ed8..917ac9f844 100644 --- a/wcfsetup/install/files/lib/system/request/RouteHandler.class.php +++ b/wcfsetup/install/files/lib/system/request/RouteHandler.class.php @@ -194,7 +194,7 @@ class RouteHandler extends SingletonFactory { } } - return implode('/', $path) . '/'; + return '/' . implode('/', $path) . '/'; } return self::$path;