Changeset 38705 for trunk/src/wp-includes/user.php
- Timestamp:
- 10/03/2016 07:03:41 AM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/user.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r38682 r38705 1359 1359 * @since 3.6.0 The `aim`, `jabber`, and `yim` fields were removed as default user contact 1360 1360 * methods for new installs. See wp_get_user_contact_methods(). 1361 * @since 4.7.0 The user's locale can be passed to `$userdata`. 1361 1362 * 1362 1363 * @global wpdb $wpdb WordPress database abstraction object. … … 1393 1394 * site's front end. Default true. 1394 1395 * @type string $role User's role. 1396 * @type string $locale User's locale. Default empty. 1395 1397 * } 1396 1398 * @return int|WP_Error The newly created user's ID or a WP_Error object if the user could not … … 1606 1608 1607 1609 $meta['show_admin_bar_front'] = empty( $userdata['show_admin_bar_front'] ) ? 'true' : $userdata['show_admin_bar_front']; 1610 1611 $meta['locale'] = isset( $userdata['locale'] ) ? $userdata['locale'] : ''; 1608 1612 1609 1613 $user_nicename_check = $wpdb->get_var( $wpdb->prepare("SELECT ID FROM $wpdb->users WHERE user_nicename = %s AND user_login != %s LIMIT 1" , $user_nicename, $user_login)); … … 1966 1970 */ 1967 1971 function _get_additional_user_keys( $user ) { 1968 $keys = array( 'first_name', 'last_name', 'nickname', 'description', 'rich_editing', 'comment_shortcuts', 'admin_color', 'use_ssl', 'show_admin_bar_front' );1972 $keys = array( 'first_name', 'last_name', 'nickname', 'description', 'rich_editing', 'comment_shortcuts', 'admin_color', 'use_ssl', 'show_admin_bar_front', 'locale' ); 1969 1973 return array_merge( $keys, array_keys( wp_get_user_contact_methods( $user ) ) ); 1970 1974 }
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)