Changeset 57190
- Timestamp:
- 12/15/2023 12:35:54 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-user.php
r56184 r57190 118 118 * @since 2.0.0 119 119 * 120 * @global wpdb $wpdb WordPress database abstraction object. 121 * 120 122 * @param int|string|stdClass|WP_User $id User's ID, a WP_User object, or a user object from the DB. 121 123 * @param string $name Optional. User's username … … 123 125 */ 124 126 public function __construct( $id = 0, $name = '', $site_id = '' ) { 127 global $wpdb; 128 125 129 if ( ! isset( self::$back_compat_keys ) ) { 126 $prefix = $GLOBALS['wpdb']->prefix; 130 $prefix = $wpdb->prefix; 131 127 132 self::$back_compat_keys = array( 128 133 'user_firstname' => 'first_name',
Note: See TracChangeset
for help on using the changeset viewer.