mirror of
https://github.com/friendica/friendica
synced 2025-04-27 13:10:10 +00:00
Merge pull request #8056 from nupplaphil/task/remove_rdirname
Remove rdirname() in favor of native dirname()
This commit is contained in:
commit
05de0f4a19
2 changed files with 1 additions and 20 deletions
|
@ -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, '/');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue