Add missing parameter and return descriptions to the DocBlock for `wp_xmlrpc_server->_convert_date()`.
See #32246. Built from https://develop.svn.wordpress.org/trunk@32563 git-svn-id: http://core.svn.wordpress.org/trunk@32533 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9f73a3351f
commit
d94d97eab6
|
@ -669,8 +669,8 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||
*
|
||||
* @access protected
|
||||
*
|
||||
* @param array|object $term The unprepared term data
|
||||
* @return array The prepared term data
|
||||
* @param array|object $term The unprepared term data.
|
||||
* @return array The prepared term data.
|
||||
*/
|
||||
protected function _prepare_term( $term ) {
|
||||
$_term = $term;
|
||||
|
@ -702,8 +702,8 @@ class wp_xmlrpc_server extends IXR_Server {
|
|||
*
|
||||
* @access protected
|
||||
*
|
||||
* @param string $date
|
||||
* @return IXR_Date
|
||||
* @param string $date Date string to convert.
|
||||
* @return IXR_Date IXR_Date object.
|
||||
*/
|
||||
protected function _convert_date( $date ) {
|
||||
if ( $date === '0000-00-00 00:00:00' ) {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-alpha-32562';
|
||||
$wp_version = '4.3-alpha-32563';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue