mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-14 22:56:19 +01:00
Query stopwords: Only eliminate single A-Z letters as search terms.
Merges [25954] to the 3.7 branch. Stop trying to match any single letters that are not East Asian characters, as this requires PCRE with UTF-8 support; and because it doesn't actually work. fixes #25709. Built from https://develop.svn.wordpress.org/branches/3.7@25955 git-svn-id: http://core.svn.wordpress.org/branches/3.7@25914 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
167918a364
commit
a38ca7ef4c
@ -1986,8 +1986,8 @@ class WP_Query {
|
||||
else
|
||||
$term = trim( $term, "\"' " );
|
||||
|
||||
// \p{L} matches a single letter that is not a Chinese, Japanese, etc. char
|
||||
if ( ! $term || preg_match( '/^\p{L}$/u', $term ) )
|
||||
// Avoid single A-Z.
|
||||
if ( ! $term || ( 1 === strlen( $term ) && preg_match( '/^[a-z]$/i', $term ) ) )
|
||||
continue;
|
||||
|
||||
if ( in_array( call_user_func( $strtolower, $term ), $stopwords, true ) )
|
||||
|
Loading…
Reference in New Issue
Block a user