Ticket #15458: wp_update_users.15458.3.diff
File wp_update_users.15458.3.diff, 3.1 KB (added by , 13 years ago) |
---|
-
wp-includes/capabilities.php
diff --git wp-includes/capabilities.php wp-includes/capabilities.php index deb50ce..310d248 100644
class WP_User { 474 474 * 475 475 * @param string $field The field to query against: 'id', 'slug', 'email' or 'login' 476 476 * @param string|int $value The field value 477 * @return object Raw user object 477 478 */ 478 479 static function get_data_by( $field, $value ) { 479 480 global $wpdb; … … class WP_User { 618 619 * property matching the 'cap_key' exists and is an array. If so, it will be 619 620 * used. 620 621 * 622 * @access protected 621 623 * @since 2.1.0 622 624 * 623 625 * @param string $cap_key Optional capability key 624 * @access protected625 626 */ 626 627 function _init_caps( $cap_key = '' ) { 627 628 global $wpdb; -
wp-includes/user.php
diff --git wp-includes/user.php wp-includes/user.php index e339eb5..2868e0e 100644
function wp_insert_user($userdata) { 1353 1353 $user_id = (int) $wpdb->insert_id; 1354 1354 } 1355 1355 1356 update_user_meta( $user_id, 'first_name', $first_name ); 1357 update_user_meta( $user_id, 'last_name', $last_name ); 1358 update_user_meta( $user_id, 'nickname', $nickname ); 1359 update_user_meta( $user_id, 'description', $description ); 1360 update_user_meta( $user_id, 'rich_editing', $rich_editing ); 1361 update_user_meta( $user_id, 'comment_shortcuts', $comment_shortcuts ); 1362 update_user_meta( $user_id, 'admin_color', $admin_color ); 1363 update_user_meta( $user_id, 'use_ssl', $use_ssl ); 1364 update_user_meta( $user_id, 'show_admin_bar_front', $show_admin_bar_front ); 1365 1366 $user = new WP_User($user_id); 1367 1368 foreach ( _wp_get_user_contactmethods( $user ) as $method => $name ) { 1369 if ( empty($$method) ) 1370 $$method = ''; 1371 1372 update_user_meta( $user_id, $method, $$method ); 1356 $user = new WP_User( $user_id ); 1357 1358 foreach ( _get_additional_user_keys( $user ) as $key ) { 1359 update_user_meta( $user_id, $key, $$key ); 1373 1360 } 1374 1361 1375 1362 if ( isset($role) ) … … function wp_update_user($userdata) { 1411 1398 $ID = (int) $userdata['ID']; 1412 1399 1413 1400 // First, get all of the original fields 1414 $user = WP_User::get_data_by('id', $ID); 1401 $user_obj = get_userdata( $ID ); 1402 1403 $user = get_object_vars( $user_obj->data ); 1404 1405 // Add additional custom fields 1406 foreach ( _get_additional_user_keys( $user_obj ) as $key ) { 1407 $user[ $key ] = get_user_meta( $ID, $key, true ); 1408 } 1415 1409 1416 1410 // Escape data pulled from DB. 1417 $user = add_magic_quotes( get_object_vars($user));1411 $user = add_magic_quotes( $user ); 1418 1412 1419 1413 // If password is changing, hash it now. 1420 1414 if ( ! empty($userdata['user_pass']) ) { … … function wp_create_user($username, $password, $email = '') { 1465 1459 1466 1460 1467 1461 /** 1462 * Return a list of meta keys that wp_insert_user() is supposed to set. 1463 * 1464 * @access private 1465 * @since 3.3.0 1466 * 1467 * @param object $user WP_User instance 1468 * @return array 1469 */ 1470 function _get_additional_user_keys( $user ) { 1471 $keys = array( 'first_name', 'last_name', 'nickname', 'description', 'rich_editing', 'comment_shortcuts', 'admin_color', 'use_ssl', 'show_admin_bar_front' ); 1472 return array_merge( $keys, array_keys( _wp_get_user_contactmethods( $user ) ) ); 1473 } 1474 1475 /** 1468 1476 * Set up the default contact methods 1469 1477 * 1470 1478 * @access private