WPDB: When removing invalid characters from utf8 strings in older versions of PHP, the regex was too large to be compiled.
See #21212 Built from https://develop.svn.wordpress.org/trunk@30366 git-svn-id: http://core.svn.wordpress.org/trunk@30365 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ddbb5a850f
commit
14bf4939e4
|
@ -2411,7 +2411,7 @@ class wpdb {
|
||||||
| [\xE1-\xEC][\x80-\xBF]{2}
|
| [\xE1-\xEC][\x80-\xBF]{2}
|
||||||
| \xED[\x80-\x9F][\x80-\xBF]
|
| \xED[\x80-\x9F][\x80-\xBF]
|
||||||
| [\xEE-\xEF][\x80-\xBF]{2}
|
| [\xEE-\xEF][\x80-\xBF]{2}
|
||||||
){1,100} # ...one or more times
|
){1,50} # ...one or more times
|
||||||
)
|
)
|
||||||
| . # anything else
|
| . # anything else
|
||||||
/x';
|
/x';
|
||||||
|
|
Loading…
Reference in New Issue