PATH_INFO is delivered URL encoded on newer apache 2.4

This commit is contained in:
Sarah Hoffmann 2014-10-16 00:33:56 +02:00
parent 4cfeeb06ba
commit 02c219d40e

View File

@ -87,7 +87,7 @@
} else {
if (!(isset($_GET['q']) && $_GET['q']) && isset($_SERVER['PATH_INFO']) && $_SERVER['PATH_INFO'][0] == '/')
{
$sQuery = substr($_SERVER['PATH_INFO'], 1);
$sQuery = substr(rawurldecode($_SERVER['PATH_INFO']), 1);
// reverse order of '/' separated string
$aPhrases = explode('/', $sQuery);