SCRIPT_NAME instead of PHP_SELF to find self for niceurl test
This commit is contained in:
parent
efde5e1edf
commit
5ea7cc5b36
2 changed files with 1 additions and 2 deletions
|
@ -332,7 +332,7 @@ class Setup extends Extension
|
|||
$host .= ":" . $_SERVER["SERVER_PORT"];
|
||||
}
|
||||
}
|
||||
$full = "//" . $host . $_SERVER["PHP_SELF"];
|
||||
$full = "//" . $host . $_SERVER["SCRIPT_NAME"];
|
||||
$test_url = str_replace("/index.php", "/nicetest", $full);
|
||||
|
||||
$nicescript = "<script type='text/javascript'>
|
||||
|
|
|
@ -28,7 +28,6 @@ elseif (preg_match('/\.(?:png|jpg|jpeg|gif|css|js|php)(\?.*)?$/', $_SERVER["REQU
|
|||
unset($matches);
|
||||
|
||||
// all other requests (use shimmie routing based on URL)
|
||||
$_SERVER["PHP_SELF"] = '/index.php';
|
||||
$_GET['q'] = explode("?", $_SERVER["REQUEST_URI"])[0];
|
||||
error_log($_GET['q']); // if we use a custom handler, we need to do our own access log
|
||||
require_once "index.php";
|
||||
|
|
Reference in a new issue