Remove deprecated rdirname() in favor of native dirname()

This commit is contained in:
nupplaPhil
2020-01-05 00:10:34 +01:00
parent 5d20cd7e16
commit 07b4ceecd2
2 changed files with 1 additions and 20 deletions

View File

@@ -355,7 +355,7 @@ class BaseURL
if (!empty($relative_script_path)) {
// Module
if (!empty($this->server['QUERY_STRING'])) {
$this->urlPath = trim(rdirname($relative_script_path, substr_count(trim($this->server['QUERY_STRING'], '/'), '/') + 1), '/');
$this->urlPath = trim(dirname($relative_script_path, substr_count(trim($this->server['QUERY_STRING'], '/'), '/') + 1), '/');
} else {
// Root page
$this->urlPath = trim($relative_script_path, '/');