mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
Docs: Improve inline comments per the documentation standards.
Includes minor code layout fixes for better readability. See #48303. git-svn-id: https://develop.svn.wordpress.org/trunk@47122 602fd350-edb4-49c9-b593-d223f7449a82
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