Fix for entites in path #1524

This commit is contained in:
Andy Miller
2018-10-08 12:01:27 -06:00
parent a3a4f5b2d6
commit 8ccc8a3926

View File

@@ -1425,6 +1425,9 @@ class Admin
$path = "/{$path}";
}
// Fix for entities in path causing looping...
$path = urldecode($path);
$page = $path ? $pages->dispatch($path, true) : $pages->root();
if (!$page) {