diff --git a/wp-includes/comment.php b/wp-includes/comment.php index b260ee8643..36a277aeea 100644 --- a/wp-includes/comment.php +++ b/wp-includes/comment.php @@ -646,7 +646,7 @@ function wp_allow_comment( $commentdata, $avoid_die = false ) { */ do_action( 'comment_duplicate_trigger', $commentdata ); if ( true === $avoid_die ) { - return new WP_Error( 'comment_duplicate', __( 'Duplicate comment detected; it looks as though you’ve already said that!' ), $dupe_id ); + return new WP_Error( 'comment_duplicate', __( 'Duplicate comment detected; it looks as though you’ve already said that!' ), 409 ); } else { if ( wp_doing_ajax() ) { die( __('Duplicate comment detected; it looks as though you’ve already said that!') ); @@ -702,7 +702,7 @@ function wp_allow_comment( $commentdata, $avoid_die = false ) { ); if ( $is_flood ) { - return new WP_Error( 'comment_flood', __( 'You are posting comments too quickly. Slow down.' ) ); + return new WP_Error( 'comment_flood', __( 'You are posting comments too quickly. Slow down.' ), 429 ); } if ( ! empty( $commentdata['user_id'] ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 766c90a63b..27aabc9a44 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38782'; +$wp_version = '4.7-alpha-38783'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.