forked from GNUsocial/gnu-social
Merge branch 'master' into 1.0.x
This commit is contained in:
commit
d852e871f5
16
index.php
16
index.php
@ -49,21 +49,29 @@ $action = null;
|
|||||||
|
|
||||||
function getPath($req)
|
function getPath($req)
|
||||||
{
|
{
|
||||||
|
$p = null;
|
||||||
|
|
||||||
if ((common_config('site', 'fancy') || !array_key_exists('PATH_INFO', $_SERVER))
|
if ((common_config('site', 'fancy') || !array_key_exists('PATH_INFO', $_SERVER))
|
||||||
&& array_key_exists('p', $req)
|
&& array_key_exists('p', $req)
|
||||||
) {
|
) {
|
||||||
return $req['p'];
|
$p = $req['p'];
|
||||||
} else if (array_key_exists('PATH_INFO', $_SERVER)) {
|
} else if (array_key_exists('PATH_INFO', $_SERVER)) {
|
||||||
$path = $_SERVER['PATH_INFO'];
|
$path = $_SERVER['PATH_INFO'];
|
||||||
$script = $_SERVER['SCRIPT_NAME'];
|
$script = $_SERVER['SCRIPT_NAME'];
|
||||||
if (substr($path, 0, mb_strlen($script)) == $script) {
|
if (substr($path, 0, mb_strlen($script)) == $script) {
|
||||||
return substr($path, mb_strlen($script));
|
$p = substr($path, mb_strlen($script) + 1);
|
||||||
} else {
|
} else {
|
||||||
return $path;
|
$p = $path;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return null;
|
$p = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Trim all initial '/'
|
||||||
|
|
||||||
|
$p = ltrim($p, '/');
|
||||||
|
|
||||||
|
return $p;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user