Bugfixes: Correct email validation in comments.php (see #c4ce531); Fixed brackets in core.wp-formatting.php (thanks Lubomir!)
This commit is contained in:
parent
046e24dd3c
commit
9d45056f97
@ -114,7 +114,7 @@ function comment_validate() {
|
||||
*/
|
||||
|
||||
if ($email) {
|
||||
if (!filter_var($url, FILTER_VALIDATE_EMAIL)) {
|
||||
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
|
||||
$errors ['email'] = $lerr ['email'];
|
||||
}
|
||||
}
|
||||
|
@ -66,7 +66,7 @@ function wptexturize($text) {
|
||||
} elseif (strstr($curl, '</') || strstr($curl, '/>')) {
|
||||
if ($skip > 0)
|
||||
$skip--;
|
||||
} elseif (strstr($curl, '<code') || strstr($curl, '<pre') || strstr($curl, '<kbd' || strstr($curl, '<style') || strstr($curl, '<script'))) {
|
||||
} elseif (strstr($curl, '<code') || strstr($curl, '<pre') || strstr($curl, '<kbd') || strstr($curl, '<style') || strstr($curl, '<script')) {
|
||||
// strstr is fast
|
||||
$skip++;
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user