X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/03f2fa83c13c1b532284205fa7efcab9b8b2c41f..refs/heads/pristine:/wp-admin/network/site-new.php diff --git a/wp-admin/network/site-new.php b/wp-admin/network/site-new.php index dac11614..0be051ec 100644 --- a/wp-admin/network/site-new.php +++ b/wp-admin/network/site-new.php @@ -13,11 +13,8 @@ require_once( dirname( __FILE__ ) . '/admin.php' ); /** WordPress Translation Install API */ require_once( ABSPATH . 'wp-admin/includes/translation-install.php' ); -if ( ! is_multisite() ) - wp_die( __( 'Multisite support is not enabled.' ) ); - if ( ! current_user_can( 'manage_sites' ) ) - wp_die( __( 'You do not have sufficient permissions to add sites to this network.' ) ); + wp_die( __( 'Sorry, you are not allowed to add sites to this network.' ) ); get_current_screen()->add_help_tab( array( 'id' => 'overview', @@ -29,8 +26,8 @@ get_current_screen()->add_help_tab( array( get_current_screen()->set_help_sidebar( '

' . __('For more information:') . '

' . - '

' . __('Documentation on Site Management') . '

' . - '

' . __('Support Forums') . '

' + '

' . __('Documentation on Site Management') . '

' . + '

' . __('Support Forums') . '

' ); if ( isset($_REQUEST['action']) && 'add-site' == $_REQUEST['action'] ) { @@ -49,7 +46,12 @@ if ( isset($_REQUEST['action']) && 'add-site' == $_REQUEST['action'] ) { $subdirectory_reserved_names = get_subdirectory_reserved_names(); if ( in_array( $domain, $subdirectory_reserved_names ) ) { - wp_die( sprintf( __( 'The following words are reserved for use by WordPress functions and cannot be used as blog names: %s' ), implode( ', ', $subdirectory_reserved_names ) ) ); + wp_die( + /* translators: %s: reserved names list */ + sprintf( __( 'The following words are reserved for use by WordPress functions and cannot be used as blog names: %s' ), + '' . implode( ', ', $subdirectory_reserved_names ) . '' + ) + ); } } @@ -60,10 +62,14 @@ if ( isset($_REQUEST['action']) && 'add-site' == $_REQUEST['action'] ) { ); // Handle translation install for the new site. - if ( ! empty( $_POST['WPLANG'] ) && wp_can_install_language_pack() ) { - $language = wp_download_language_pack( wp_unslash( $_POST['WPLANG'] ) ); - if ( $language ) { - $meta['WPLANG'] = $language; + if ( isset( $_POST['WPLANG'] ) ) { + if ( '' === $_POST['WPLANG'] ) { + $meta['WPLANG'] = ''; // en_US + } elseif ( wp_can_install_language_pack() ) { + $language = wp_download_language_pack( wp_unslash( $_POST['WPLANG'] ) ); + if ( $language ) { + $meta['WPLANG'] = $language; + } } } @@ -80,16 +86,25 @@ if ( isset($_REQUEST['action']) && 'add-site' == $_REQUEST['action'] ) { } if ( is_subdomain_install() ) { - $newdomain = $domain . '.' . preg_replace( '|^www\.|', '', $current_site->domain ); - $path = $current_site->path; + $newdomain = $domain . '.' . preg_replace( '|^www\.|', '', get_network()->domain ); + $path = get_network()->path; } else { - $newdomain = $current_site->domain; - $path = $current_site->path . $domain . '/'; + $newdomain = get_network()->domain; + $path = get_network()->path . $domain . '/'; } $password = 'N/A'; $user_id = email_exists($email); if ( !$user_id ) { // Create a new user with a random password + /** + * Fires immediately before a new user is created via the network site-new.php page. + * + * @since 4.5.0 + * + * @param string $email Email of the non-existent user. + */ + do_action( 'pre_network_site_new_created_user', $email ); + $user_id = username_exists( $domain ); if ( $user_id ) { wp_die( __( 'The domain or path entered conflicts with an existing username.' ) ); @@ -111,24 +126,36 @@ if ( isset($_REQUEST['action']) && 'add-site' == $_REQUEST['action'] ) { } $wpdb->hide_errors(); - $id = wpmu_create_blog( $newdomain, $path, $title, $user_id, $meta, $current_site->id ); + $id = wpmu_create_blog( $newdomain, $path, $title, $user_id, $meta, get_current_network_id() ); $wpdb->show_errors(); if ( ! is_wp_error( $id ) ) { if ( ! is_super_admin( $user_id ) && !get_user_option( 'primary_blog', $user_id ) ) { update_user_option( $user_id, 'primary_blog', $id, true ); } - $content_mail = sprintf( - /* translators: 1: user login, 2: site url, 3: site name/title */ - __( 'New site created by %1$s + wp_mail( + get_site_option( 'admin_email' ), + sprintf( + /* translators: %s: network name */ + __( '[%s] New Site Created' ), + get_network()->site_name + ), + sprintf( + /* translators: 1: user login, 2: site url, 3: site name/title */ + __( 'New site created by %1$s Address: %2$s Name: %3$s' ), - $current_user->user_login, - get_site_url( $id ), - wp_unslash( $title ) + $current_user->user_login, + get_site_url( $id ), + wp_unslash( $title ) + ), + sprintf( + 'From: "%1$s" <%2$s>', + _x( 'Site Admin', 'email "From" field' ), + get_site_option( 'admin_email' ) + ) ); - wp_mail( get_site_option('admin_email'), sprintf( __( '[%s] New Site Created' ), $current_site->site_name ), $content_mail, 'From: "Site Admin" <' . get_site_option( 'admin_email' ) . '>' ); wpmu_welcome_notification( $id, $user_id, $password, $title, array( 'public' => 1 ) ); wp_redirect( add_query_arg( array( 'update' => 'added', 'id' => $id ), 'site-new.php' ) ); exit; @@ -168,14 +195,14 @@ if ( ! empty( $messages ) ) { - + @@ -220,7 +247,17 @@ if ( ! empty( $messages ) ) {
- .domain ); ?> + .domain ); ?> domain . $current_site->path ?> + echo get_network()->domain . get_network()->path ?> ' . __( 'Only lowercase letters (a-z) and numbers are allowed.' ) . '

'; + echo '

' . __( 'Only lowercase letters (a-z), numbers, and hyphens are allowed.' ) . '

'; ?>

- + +