Docs: Fix incorrect indentation for the `wp_xmlrpc_server->wp_getPostFormats()` DocBlock.
Also adds a missing return description. Props TomHarrigan. Fixes #33078. Built from https://develop.svn.wordpress.org/trunk@33407 git-svn-id: http://core.svn.wordpress.org/trunk@33375 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
aa8229a868
commit
bed02906f2
|
@ -3888,7 +3888,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieves a list of post formats used by the site
|
* Retrieves a list of post formats used by the site.
|
||||||
*
|
*
|
||||||
* @since 3.1.0
|
* @since 3.1.0
|
||||||
*
|
*
|
||||||
|
@ -3899,7 +3899,7 @@ class wp_xmlrpc_server extends IXR_Server {
|
||||||
* @type string $username
|
* @type string $username
|
||||||
* @type string $password
|
* @type string $password
|
||||||
* }
|
* }
|
||||||
* @return array|IXR_Error
|
* @return array|IXR_Error List of post formats, otherwise IXR_Error object.
|
||||||
*/
|
*/
|
||||||
public function wp_getPostFormats( $args ) {
|
public function wp_getPostFormats( $args ) {
|
||||||
$this->escape( $args );
|
$this->escape( $args );
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.3-beta4-33394';
|
$wp_version = '4.3-beta4-33407';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue