Ticket #20116: 20116.minimal.2.diff
| File 20116.minimal.2.diff, 597 bytes (added by , 14 years ago) |
|---|
-
wp-includes/ms-functions.php
1894 1894 */ 1895 1895 function welcome_user_msg_filter( $text ) { 1896 1896 if ( !$text ) { 1897 return __( 'Dear User, 1897 remove_filter( 'site_option_welcome_user_email', 'welcome_user_msg_filter' ); 1898 $text = __( 'Dear User, 1898 1899 1899 1900 Your new account is set up. 1900 1901 … … 1906 1907 Thanks! 1907 1908 1908 1909 --The Team @ SITE_NAME' ); 1910 update_site_option( 'welcome_user_email', $text ); 1909 1911 } 1910 1912 return $text; 1911 1913 }