Fix the passing of commenter cookie data to the comment API so that we don't try and fetch all unapproved comments for users with no-email address when we only have an author.

Fixes #19623

Built from https://develop.svn.wordpress.org/trunk@30547


git-svn-id: http://core.svn.wordpress.org/trunk@30536 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Peter Westwood 2014-11-24 10:51:22 +00:00
parent 4b6abbaff4
commit 6c40c6f2e2
2 changed files with 2 additions and 2 deletions

View File

@ -1160,7 +1160,7 @@ function comments_template( $file = '/comments.php', $separate_comments = false
if ( $user_ID ) { if ( $user_ID ) {
$comment_args['include_unapproved'] = array( $user_ID ); $comment_args['include_unapproved'] = array( $user_ID );
} else if ( ! empty( $comment_author ) ) { } else if ( ! empty( $comment_author_email ) ) {
$comment_args['include_unapproved'] = array( $comment_author_email ); $comment_args['include_unapproved'] = array( $comment_author_email );
} }

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.1-beta2-30546'; $wp_version = '4.1-beta2-30547';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.