mirror of
https://github.com/WordPress/WordPress.git
synced 2026-06-19 07:37:07 +00:00
Code is Poetry.
WordPress' code just... wasn't. This is now dealt with. Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS. Fixes #41057. Built from https://develop.svn.wordpress.org/trunk@42343 git-svn-id: http://core.svn.wordpress.org/trunk@42172 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
+10
-5
@@ -11,14 +11,14 @@ if ( 'POST' != $_SERVER['REQUEST_METHOD'] ) {
|
||||
$protocol = 'HTTP/1.0';
|
||||
}
|
||||
|
||||
header('Allow: POST');
|
||||
header("$protocol 405 Method Not Allowed");
|
||||
header('Content-Type: text/plain');
|
||||
header( 'Allow: POST' );
|
||||
header( "$protocol 405 Method Not Allowed" );
|
||||
header( 'Content-Type: text/plain' );
|
||||
exit;
|
||||
}
|
||||
|
||||
/** Sets up the WordPress Environment. */
|
||||
require( dirname(__FILE__) . '/wp-load.php' );
|
||||
require( dirname( __FILE__ ) . '/wp-load.php' );
|
||||
|
||||
nocache_headers();
|
||||
|
||||
@@ -26,7 +26,12 @@ $comment = wp_handle_comment_submission( wp_unslash( $_POST ) );
|
||||
if ( is_wp_error( $comment ) ) {
|
||||
$data = intval( $comment->get_error_data() );
|
||||
if ( ! empty( $data ) ) {
|
||||
wp_die( '<p>' . $comment->get_error_message() . '</p>', __( 'Comment Submission Failure' ), array( 'response' => $data, 'back_link' => true ) );
|
||||
wp_die(
|
||||
'<p>' . $comment->get_error_message() . '</p>', __( 'Comment Submission Failure' ), array(
|
||||
'response' => $data,
|
||||
'back_link' => true,
|
||||
)
|
||||
);
|
||||
} else {
|
||||
exit;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user