mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 06:57:35 +01:00
Docs: Add missing notations for the unused $args
parameter in the blogger_getTemplate()
and blogger_setTemplate()
methods in wp_xmlrpc_server
.
See #32246. Built from https://develop.svn.wordpress.org/trunk@35962 git-svn-id: http://core.svn.wordpress.org/trunk@35927 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d057c51893
commit
92dd7b7447
@ -4530,7 +4530,9 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
* @deprecated 3.5.0
|
* @deprecated 3.5.0
|
||||||
* @return IXR_Error
|
*
|
||||||
|
* @param array $args Unused.
|
||||||
|
* @return IXR_Error Error message.
|
||||||
*/
|
*/
|
||||||
public function blogger_getTemplate($args) {
|
public function blogger_getTemplate($args) {
|
||||||
return new IXR_Error( 403, __('Sorry, that file cannot be edited.' ) );
|
return new IXR_Error( 403, __('Sorry, that file cannot be edited.' ) );
|
||||||
@ -4541,18 +4543,20 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
* @deprecated 3.5.0
|
* @deprecated 3.5.0
|
||||||
* @return IXR_Error
|
*
|
||||||
|
* @param array $args Unused.
|
||||||
|
* @return IXR_Error Error message.
|
||||||
*/
|
*/
|
||||||
public function blogger_setTemplate($args) {
|
public function blogger_setTemplate($args) {
|
||||||
return new IXR_Error( 403, __('Sorry, that file cannot be edited.' ) );
|
return new IXR_Error( 403, __('Sorry, that file cannot be edited.' ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create new post.
|
* Creates new post.
|
||||||
*
|
*
|
||||||
* @since 1.5.0
|
* @since 1.5.0
|
||||||
*
|
*
|
||||||
* @param array $args {
|
* @param array $args {
|
||||||
* Method arguments. Note: arguments must be ordered as documented.
|
* Method arguments. Note: arguments must be ordered as documented.
|
||||||
*
|
*
|
||||||
* @type string $appkey (unused)
|
* @type string $appkey (unused)
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.5-alpha-35961';
|
$wp_version = '4.5-alpha-35962';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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
Block a user