Changeset 60644
- Timestamp:
- 08/18/2025 12:31:19 PM (4 months ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
src/wp-includes/author-template.php (modified) (3 diffs)
-
src/wp-includes/user.php (modified) (2 diffs)
-
tests/phpunit/tests/xmlrpc/wp/getUser.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/author-template.php
r60299 r60644 125 125 * 126 126 * - admin_color 127 * - aim128 127 * - comment_shortcuts 129 128 * - description … … 131 130 * - first_name 132 131 * - ID 133 * - jabber134 132 * - last_name 135 133 * - nickname … … 150 148 * - user_status 151 149 * - user_url 152 * - yim153 150 * 154 151 * @since 2.8.0 152 * @since 6.9.0 Removed `aim`, `jabber`, and `yim` as valid values for the `$field` parameter. 155 153 * 156 154 * @global WP_User $authordata The current author's data. -
trunk/src/wp-includes/user.php
r60634 r60644 2954 2954 * Sets up the user contact methods. 2955 2955 * 2956 * Default contact methods were removed in 3.6. A filter dictates contact methods. 2956 * Default contact methods were removed for new installations in WordPress 3.6 2957 * and completely removed from the codebase in WordPress 6.9. 2958 * 2959 * Use the {@see 'user_contactmethods'} filter to add or remove contact methods. 2957 2960 * 2958 2961 * @since 3.7.0 2962 * @since 6.9.0 Removed references to `aim`, `jabber`, and `yim` contact methods. 2959 2963 * 2960 2964 * @param WP_User|null $user Optional. WP_User object. … … 2963 2967 function wp_get_user_contact_methods( $user = null ) { 2964 2968 $methods = array(); 2965 if ( get_site_option( 'initial_db_version' ) < 23588 ) {2966 $methods = array(2967 'aim' => __( 'AIM' ),2968 'yim' => __( 'Yahoo IM' ),2969 'jabber' => __( 'Jabber / Google Talk' ),2970 );2971 }2972 2969 2973 2970 /** -
trunk/tests/phpunit/tests/xmlrpc/wp/getUser.php
r58876 r60644 61 61 'user_url' => 'http://www.example.com/testuser', 62 62 'role' => 'author', 63 'aim' => 'wordpress',64 63 'user_registered' => date_format( date_create( "@{$registered_date}" ), 'Y-m-d H:i:s' ), 65 64 );
Note: See TracChangeset
for help on using the changeset viewer.