urldecode() search strings that come in from /search/foo. props SergeyBiryukov. fixes #13961

git-svn-id: https://develop.svn.wordpress.org/trunk@21187 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2012-06-30 07:47:22 +00:00
parent e1b03b4fd4
commit 0b294b9481
1 changed files with 2 additions and 0 deletions

View File

@ -2177,6 +2177,8 @@ class WP_Query {
if ( !empty($q['s']) ) {
// added slashes screw with quote grouping when done early, so done later
$q['s'] = stripslashes($q['s']);
if ( empty( $_GET['s'] ) && is_main_query() )
$q['s'] = urldecode($q['s']);
if ( !empty($q['sentence']) ) {
$q['search_terms'] = array($q['s']);
} else {