Changeset 11852
- Timestamp:
- 08/20/2009 07:51:43 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/user.php
r11784 r11852 838 838 } 839 839 840 /**841 * Setup the default contact methods842 *843 * @access private844 * @since845 *846 * @return array $user_contactmethods Array of contact methods and their labels.847 */848 function _wp_get_user_contactmethods() {849 $user_contactmethods = array(850 'aim' => __('AIM'),851 'yim' => __('Yahoo IM'),852 'jabber' => __('Jabber / Google Talk')853 );854 return apply_filters('user_contactmethods',$user_contactmethods);855 }856 857 840 ?> -
trunk/wp-includes/registration.php
r11784 r11852 301 301 } 302 302 303 304 /** 305 * Setup the default contact methods 306 * 307 * @access private 308 * @since 309 * 310 * @return array $user_contactmethods Array of contact methods and their labels. 311 */ 312 function _wp_get_user_contactmethods() { 313 $user_contactmethods = array( 314 'aim' => __('AIM'), 315 'yim' => __('Yahoo IM'), 316 'jabber' => __('Jabber / Google Talk') 317 ); 318 return apply_filters('user_contactmethods',$user_contactmethods); 319 } 320 303 321 ?>
Note: See TracChangeset
for help on using the changeset viewer.