mirror of https://github.com/itflow-org/itflow
cap the path_prefix to 3 depth directories max
This commit is contained in:
parent
8407cd3ea5
commit
c78f50ab8c
|
|
@ -4,5 +4,5 @@
|
|||
// Currently unused, but the idea is to dynamically prepend ../../ to asset paths (like includes, libraries, etc.)
|
||||
// based on the current directory depth. This allows us to support deeply nested folder structures.
|
||||
|
||||
$depth = substr_count(trim($_SERVER['REQUEST_URI'], '/'), '/');
|
||||
$depth = min(substr_count(trim($_SERVER['REQUEST_URI'], '/'), '/'), 3);
|
||||
$path_prefix = str_repeat('../', $depth);
|
||||
|
|
|
|||
Loading…
Reference in New Issue