mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Docs: Add missing notations for the unused $args parameter in the blogger_getTemplate() and blogger_setTemplate() methods in wp_xmlrpc_server.
See #32246. git-svn-id: https://develop.svn.wordpress.org/trunk@35962 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
7b51c13f17
commit
86d78d3975
@ -4530,7 +4530,9 @@ class wp_xmlrpc_server extends IXR_Server {
|
||||
*
|
||||
* @since 1.5.0
|
||||
* @deprecated 3.5.0
|
||||
* @return IXR_Error
|
||||
*
|
||||
* @param array $args Unused.
|
||||
* @return IXR_Error Error message.
|
||||
*/
|
||||
public function blogger_getTemplate($args) {
|
||||
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
|
||||
* @deprecated 3.5.0
|
||||
* @return IXR_Error
|
||||
*
|
||||
* @param array $args Unused.
|
||||
* @return IXR_Error Error message.
|
||||
*/
|
||||
public function blogger_setTemplate($args) {
|
||||
return new IXR_Error( 403, __('Sorry, that file cannot be edited.' ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Create new post.
|
||||
* Creates new post.
|
||||
*
|
||||
* @since 1.5.0
|
||||
*
|
||||
* @param array $args {
|
||||
* @param array $args {
|
||||
* Method arguments. Note: arguments must be ordered as documented.
|
||||
*
|
||||
* @type string $appkey (unused)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user