Explicit ID check so we don't fall through for empties. Props natecook. fixes #6539 for 2.6

git-svn-id: http://svn.automattic.com/wordpress/trunk@7605 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-04-06 23:23:05 +00:00
parent f83ca8ec0d
commit 81d1b488a9
1 changed files with 1 additions and 1 deletions

View File

@ -920,7 +920,7 @@ class WP_Query {
$reqpage = 0;
}
if ( ('page' != get_option('show_on_front') ) || ( $reqpage != get_option('page_for_posts') ) ) {
if ( ('page' != get_option('show_on_front') ) || ( $reqpage !== get_option('page_for_posts') ) ) {
$q['pagename'] = str_replace('%2F', '/', urlencode(urldecode($q['pagename'])));
$page_paths = '/' . trim($q['pagename'], '/');
$q['pagename'] = sanitize_title(basename($page_paths));