Changes from tags/3.1.3/wp-includes/ms-functions.php at r18288 to trunk/wp-includes/ms-functions.php at r18289
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/ms-functions.php
r18288 r18289 883 883 $user, $user_email, $key, $meta 884 884 ), 885 site_url( "wp-activate.php?key=$key" ), 886 $key 885 site_url( "wp-activate.php?key=$key" ) 887 886 ); 888 887 // TODO: Don't hard code activation link. … … 1314 1313 Username: USERNAME 1315 1314 Password: PASSWORD 1316 Login Here: BLOG_URLwp-login.php 1317 1318 We hope you enjoy your new site. 1319 Thanks! 1315 Log in here: BLOG_URLwp-login.php 1316 1317 We hope you enjoy your new site. Thanks! 1320 1318 1321 1319 --The Team @ SITE_NAME' ) ); … … 1341 1339 1342 1340 if ( empty( $current_site->site_name ) ) 1343 $current_site->site_name = 'WordPress MU';1341 $current_site->site_name = 'WordPress'; 1344 1342 1345 1343 $subject = apply_filters( 'update_welcome_subject', sprintf(__('New %1$s Site: %2$s'), $current_site->site_name, stripslashes( $title ) ) ); … … 1389 1387 1390 1388 if ( empty( $current_site->site_name ) ) 1391 $current_site->site_name = 'WordPress MU';1389 $current_site->site_name = 'WordPress'; 1392 1390 1393 1391 $subject = apply_filters( 'update_welcome_user_subject', sprintf(__('New %1$s User: %2$s'), $current_site->site_name, $user->user_login) ); … … 1861 1859 function add_new_user_to_blog( $user_id, $email, $meta ) { 1862 1860 global $current_site; 1863 if ( $meta[ 'add_to_blog' ]) {1861 if ( !empty( $meta[ 'add_to_blog' ] ) ) { 1864 1862 $blog_id = $meta[ 'add_to_blog' ]; 1865 1863 $role = $meta[ 'new_role' ];
Note: See TracChangeset
for help on using the changeset viewer.