Fix base path with query params in builtin server

This commit is contained in:
Bernat Arlandis 2017-01-18 10:50:07 +01:00
parent 7ba160bf95
commit 6a3c4887f9

View file

@ -82,7 +82,7 @@ if (!defined('WWW_ROOT')) {
// For the built-in server
if (PHP_SAPI === 'cli-server') {
if ($_SERVER['REQUEST_URI'] !== '/' && file_exists(WWW_ROOT . $_SERVER['PHP_SELF'])) {
if ($_SERVER['PHP_SELF'] !== '/' . basename(__FILE__) && file_exists(WWW_ROOT . $_SERVER['PHP_SELF'])) {
return false;
}
$_SERVER['PHP_SELF'] = '/' . basename(__FILE__);