Changeset 23588
- Timestamp:
- 03/03/2013 03:00:34 AM (12 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/user.php
r23579 r23588 1528 1528 1529 1529 /** 1530 * Set up the default contact methods. 1530 * Set up the contact methods. 1531 * 1532 * Default contact methods were removed in 3.6. A filter dictates contact methods. 1531 1533 * 1532 1534 * @since 2.9.0 … … 1537 1539 */ 1538 1540 function _wp_get_user_contactmethods( $user = null ) { 1539 $user_contactmethods = array( 1540 'aim' => __('AIM'), 1541 'yim' => __('Yahoo IM'), 1542 'jabber' => __('Jabber / Google Talk') 1543 ); 1541 $user_contactmethods = array(); 1542 if ( get_site_option( 'initial_db_version' ) < 23588 ) { 1543 $user_contactmethods = array( 1544 'aim' => __( 'AIM' ), 1545 'yim' => __( 'Yahoo IM' ), 1546 'jabber' => __( 'Jabber / Google Talk' ) 1547 ); 1548 } 1544 1549 return apply_filters( 'user_contactmethods', $user_contactmethods, $user ); 1545 1550 } -
trunk/wp-includes/version.php
r23585 r23588 12 12 * @global int $wp_db_version 13 13 */ 14 $wp_db_version = 235 24;14 $wp_db_version = 23588; 15 15 16 16 /**
Note: See TracChangeset
for help on using the changeset viewer.