Merge pull request #8056 from nupplaphil/task/remove_rdirname
Remove rdirname() in favor of native dirname()
This commit is contained in:
commit
05de0f4a19
19
boot.php
19
boot.php
|
@ -683,22 +683,3 @@ function validate_include(&$file)
|
||||||
// Simply return flag
|
// Simply return flag
|
||||||
return $valid;
|
return $valid;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* PHP 5 compatible dirname() with count parameter
|
|
||||||
*
|
|
||||||
* @see http://php.net/manual/en/function.dirname.php#113193
|
|
||||||
*
|
|
||||||
* @deprecated with PHP 7
|
|
||||||
* @param string $path
|
|
||||||
* @param int $levels
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
function rdirname($path, $levels = 1)
|
|
||||||
{
|
|
||||||
if ($levels > 1) {
|
|
||||||
return dirname(rdirname($path, --$levels));
|
|
||||||
} else {
|
|
||||||
return dirname($path);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -355,7 +355,7 @@ class BaseURL
|
||||||
if (!empty($relative_script_path)) {
|
if (!empty($relative_script_path)) {
|
||||||
// Module
|
// Module
|
||||||
if (!empty($this->server['QUERY_STRING'])) {
|
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 {
|
} else {
|
||||||
// Root page
|
// Root page
|
||||||
$this->urlPath = trim($relative_script_path, '/');
|
$this->urlPath = trim($relative_script_path, '/');
|
||||||
|
|
Loading…
Reference in a new issue