Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/ms-functions.php

    r18288 r18289  
    883883            $user, $user_email, $key, $meta
    884884        ),
    885         site_url( "wp-activate.php?key=$key" ),
    886         $key
     885        site_url( "wp-activate.php?key=$key" )
    887886    );
    888887    // TODO: Don't hard code activation link.
     
    13141313Username: USERNAME
    13151314Password: PASSWORD
    1316 Login Here: BLOG_URLwp-login.php
    1317 
    1318 We hope you enjoy your new site.
    1319 Thanks!
     1315Log in here: BLOG_URLwp-login.php
     1316
     1317We hope you enjoy your new site. Thanks!
    13201318
    13211319--The Team @ SITE_NAME' ) );
     
    13411339
    13421340    if ( empty( $current_site->site_name ) )
    1343         $current_site->site_name = 'WordPress MU';
     1341        $current_site->site_name = 'WordPress';
    13441342
    13451343    $subject = apply_filters( 'update_welcome_subject', sprintf(__('New %1$s Site: %2$s'), $current_site->site_name, stripslashes( $title ) ) );
     
    13891387
    13901388    if ( empty( $current_site->site_name ) )
    1391         $current_site->site_name = 'WordPress MU';
     1389        $current_site->site_name = 'WordPress';
    13921390
    13931391    $subject = apply_filters( 'update_welcome_user_subject', sprintf(__('New %1$s User: %2$s'), $current_site->site_name, $user->user_login) );
     
    18611859function add_new_user_to_blog( $user_id, $email, $meta ) {
    18621860    global $current_site;
    1863     if ( $meta[ 'add_to_blog' ] ) {
     1861    if ( !empty( $meta[ 'add_to_blog' ] ) ) {
    18641862        $blog_id = $meta[ 'add_to_blog' ];
    18651863        $role = $meta[ 'new_role' ];
Note: See TracChangeset for help on using the changeset viewer.