mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 12:20:22 +00:00
Comments: Use proper HTTP response codes for validation errors.
props miqrogroove, solarissmoke, mackensen. fixes #11286. git-svn-id: https://develop.svn.wordpress.org/trunk@30579 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -1131,7 +1131,7 @@ function wp_allow_comment( $commentdata ) {
|
||||
if ( defined( 'DOING_AJAX' ) ) {
|
||||
die( __('Duplicate comment detected; it looks as though you’ve already said that!') );
|
||||
}
|
||||
wp_die( __('Duplicate comment detected; it looks as though you’ve already said that!') );
|
||||
wp_die( __( 'Duplicate comment detected; it looks as though you’ve already said that!' ), 409 );
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -1249,7 +1249,7 @@ function check_comment_flood_db( $ip, $email, $date ) {
|
||||
if ( defined('DOING_AJAX') )
|
||||
die( __('You are posting comments too quickly. Slow down.') );
|
||||
|
||||
wp_die( __('You are posting comments too quickly. Slow down.'), '', array('response' => 403) );
|
||||
wp_die( __( 'You are posting comments too quickly. Slow down.' ), 429 );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user