Revert "Core\Router: Fix for dynamic files in the forum root"
This reverts commit d4969ae009
.
This commit is contained in:
parent
d4969ae009
commit
c648a52651
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ class Router
|
|||
}
|
||||
|
||||
$pos = \strpos($uri, '/', 1);
|
||||
$base = false === $pos ? '/' /* $uri */ : \substr($uri, 0, $pos);
|
||||
$base = false === $pos ? $uri : \substr($uri, 0, $pos);
|
||||
|
||||
if (isset($this->dynamic[$base])) {
|
||||
foreach ($this->dynamic[$base] as $pattern => $data) {
|
||||
|
|
Loading…
Reference in a new issue