diff --git a/wp-includes/comment.php b/wp-includes/comment.php
index 2cc74ad5..9c922b3d 100644
a
|
b
|
function wp_get_current_commenter() { |
1952 | 1952 | function wp_get_unapproved_comment_author_email() { |
1953 | 1953 | $commenter_email = ''; |
1954 | 1954 | |
1955 | | if ( ! empty( $_GET['unapproved'] ) && ! empty( $_GET['moderation-hash'] ) ) { |
| 1955 | if ( ! empty( $_GET['unapproved'] ) && ! empty( $_GET['moderation-hash'] ) && ! is_array( $_GET['moderation-hash'] ) ) { |
1956 | 1956 | $comment_id = (int) $_GET['unapproved']; |
1957 | 1957 | $comment = get_comment( $comment_id ); |
1958 | 1958 | |