Make sure $req_uri is not empty before passing to strpos().

git-svn-id: http://svn.automattic.com/wordpress/trunk@976 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
rboren 2004-03-14 16:43:55 +00:00
parent 5670d0e1ad
commit 32aebf5d7a
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ if (! empty($_SERVER['PATH_INFO'])) {
foreach ($rewrite as $match => $query) {
// If the request URI is the anchor of the match, prepend it
// to the path info.
if (strpos($match, $req_uri) === 0) {
if ((! empty($req_uri)) && (strpos($match, $req_uri) === 0)) {
$pathinfomatch = $req_uri . '/' . $pathinfo;
}