mirror of
https://github.com/WordPress/WordPress.git
synced 2026-06-19 07:37:07 +00:00
Docs: Improve inline comments per the documentation standards.
Includes minor code layout fixes for better readability. See #48303. Built from https://develop.svn.wordpress.org/trunk@47122 git-svn-id: http://core.svn.wordpress.org/trunk@46922 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
+2
-2
@@ -21,7 +21,7 @@ if ( ! isset( $HTTP_RAW_POST_DATA ) ) {
|
||||
$HTTP_RAW_POST_DATA = file_get_contents( 'php://input' );
|
||||
}
|
||||
|
||||
// fix for mozBlog and other cases where '<?xml' isn't on the very first line
|
||||
// Fix for mozBlog and other cases where '<?xml' isn't on the very first line.
|
||||
if ( isset( $HTTP_RAW_POST_DATA ) ) {
|
||||
$HTTP_RAW_POST_DATA = trim( $HTTP_RAW_POST_DATA );
|
||||
}
|
||||
@@ -82,7 +82,7 @@ $post_default_title = '';
|
||||
$wp_xmlrpc_server_class = apply_filters( 'wp_xmlrpc_server_class', 'wp_xmlrpc_server' );
|
||||
$wp_xmlrpc_server = new $wp_xmlrpc_server_class;
|
||||
|
||||
// Fire off the request
|
||||
// Fire off the request.
|
||||
$wp_xmlrpc_server->serve_request();
|
||||
|
||||
exit;
|
||||
|
||||
Reference in New Issue
Block a user