Ticket #18428: wp.editProfile.bugfix.patch
File wp.editProfile.bugfix.patch, 905 bytes (added by , 12 years ago) |
---|
-
wp-includes/class-wp-xmlrpc-server.php
2175 2175 * - int $blog_id 2176 2176 * - string $username 2177 2177 * - string $password 2178 * - int $user_id2179 2178 * - array $content_struct 2180 2179 * It can optionally contain: 2181 2180 * - 'first_name' … … 2217 2216 if ( isset( $content_struct['last_name'] ) ) 2218 2217 $user_data['last_name'] = $content_struct['last_name']; 2219 2218 2220 if ( isset( $content_struct[' website'] ) )2221 $user_data['user_url'] = $content_struct[' website'];2219 if ( isset( $content_struct['url'] ) ) 2220 $user_data['user_url'] = $content_struct['url']; 2222 2221 2223 2222 if ( isset( $content_struct['display_name'] ) ) 2224 2223 $user_data['display_name'] = $content_struct['display_name'];