Changeset 25955
- Timestamp:
- 10/27/2013 08:52:20 PM (11 years ago)
- Location:
- branches/3.7
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.7
-
branches/3.7/src
- Property svn:mergeinfo changed
/trunk/src merged: 25954
- Property svn:mergeinfo changed
-
branches/3.7/src/wp-includes/query.php
r25890 r25955 1987 1987 $term = trim( $term, "\"' " ); 1988 1988 1989 // \p{L} matches a single letter that is not a Chinese, Japanese, etc. char1990 if ( ! $term || preg_match( '/^\p{L}$/u', $term) )1989 // Avoid single A-Z. 1990 if ( ! $term || ( 1 === strlen( $term ) && preg_match( '/^[a-z]$/i', $term ) ) ) 1991 1991 continue; 1992 1992
Note: See TracChangeset
for help on using the changeset viewer.