From 27646b7ee009cbd7993a6e9086f6f4dfcb652d27 Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Tue, 29 Sep 2015 17:27:26 +0000 Subject: [PATCH] Revert the introduction of validation of the comment author's email address when sanity checking input in `wp-comments-post.php` (introduced in r34274). This allows a problematic email address to fall through to the correct validation routine and show the "Please enter a valid email address" as expected. Fixes #23416 Built from https://develop.svn.wordpress.org/trunk@34693 git-svn-id: http://core.svn.wordpress.org/trunk@34657 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-comments-post.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-comments-post.php b/wp-comments-post.php index cb7bd50fa4..59e8123f39 100644 --- a/wp-comments-post.php +++ b/wp-comments-post.php @@ -90,7 +90,7 @@ if ( ! comments_open( $comment_post_ID ) ) { } $comment_author = ( isset( $_POST['author'] ) && is_string( $_POST['author'] ) ) ? trim( strip_tags( $_POST['author'] ) ) : null; -$comment_author_email = ( isset( $_POST['email'] ) && is_email( $_POST['email'] ) ) ? trim( $_POST['email'] ) : null; +$comment_author_email = ( isset( $_POST['email'] ) && is_string( $_POST['email'] ) ) ? trim( $_POST['email'] ) : null; $comment_author_url = ( isset( $_POST['url'] ) && is_string( $_POST['url'] ) ) ? trim( $_POST['url'] ) : null; $comment_content = ( isset( $_POST['comment'] ) && is_string( $_POST['comment'] ) ) ? trim( $_POST['comment'] ) : null; diff --git a/wp-includes/version.php b/wp-includes/version.php index fa23af1afc..cbc6eee428 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34692'; +$wp_version = '4.4-alpha-34693'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.