Changeset 14845
- Timestamp:
- 05/24/2010 07:18:30 PM (15 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/schema.php
r14754 r14845 690 690 691 691 $sitemeta = array( 692 'site_name' => stripslashes($site_name),692 'site_name' => $site_name, 693 693 'admin_email' => $site_user->user_email, 694 694 'admin_user_id' => $site_user->ID, -
trunk/wp-admin/network.php
r14825 r14845 382 382 $subdomain_install = !allow_subdomain_install() ? false : (bool) $_POST['subdomain_install']; 383 383 if ( ! network_domain_check() ) { 384 $result = populate_network( 1, get_clean_basedomain(), sanitize_email( $_POST['email'] ), $_POST['sitename'], $base, $subdomain_install );384 $result = populate_network( 1, get_clean_basedomain(), sanitize_email( $_POST['email'] ), stripslashes( $_POST['sitename'] ), $base, $subdomain_install ); 385 385 if ( is_wp_error( $result ) ) { 386 386 if ( 1 == count( $result->get_error_codes() ) && 'no_wildcard_dns' == $result->get_error_code() )
Note: See TracChangeset
for help on using the changeset viewer.