XML-RPC: Accept 'url', not 'website' in wp.editProfile. props maxcutler. see #18428.

git-svn-id: https://develop.svn.wordpress.org/trunk@21959 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2012-09-23 19:36:17 +00:00
parent 9a0935e055
commit 145a09b48a
1 changed files with 2 additions and 3 deletions

View File

@ -2163,7 +2163,6 @@ class wp_xmlrpc_server extends IXR_Server {
* - int $blog_id
* - string $username
* - string $password
* - int $user_id
* - array $content_struct
* It can optionally contain:
* - 'first_name'
@ -2205,8 +2204,8 @@ class wp_xmlrpc_server extends IXR_Server {
if ( isset( $content_struct['last_name'] ) )
$user_data['last_name'] = $content_struct['last_name'];
if ( isset( $content_struct['website'] ) )
$user_data['user_url'] = $content_struct['website'];
if ( isset( $content_struct['url'] ) )
$user_data['user_url'] = $content_struct['url'];
if ( isset( $content_struct['display_name'] ) )
$user_data['display_name'] = $content_struct['display_name'];