Use correct variable. We preg_match() against $request_match, so that's what should be checked with empty() too. Fixes #17177.

git-svn-id: https://develop.svn.wordpress.org/trunk@19280 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jon Cave 2011-11-14 21:05:13 +00:00
parent 65f2e58900
commit 95b591c1f7
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ class WP {
// Look for matches.
$request_match = $request;
if ( empty( $req_uri ) ) {
if ( empty( $request_match ) ) {
// An empty request could only match against ^$ regex
if ( isset( $rewrite['$'] ) ) {
$this->matched_rule = '$';