Changeset 12674 for trunk/wp-signup.php
- Timestamp:
- 01/08/2010 09:25:01 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-signup.php
r12672 r12674 57 57 global $current_site; 58 58 // Blog name 59 if( constant( "VHOST" ) == 'no')59 if( !is_subdomain_install() ) 60 60 echo '<label for="blogname">' . __('Blog Name:') . '</label>'; 61 61 else … … 66 66 <?php } 67 67 68 if( constant( "VHOST" ) == 'no') {68 if( !is_subdomain_install() ) { 69 69 echo '<span class="prefix_address">' . $current_site->domain . $current_site->path . '</span><input name="blogname" type="text" id="blogname" value="'. esc_attr($blogname) .'" maxlength="50" /><br />'; 70 70 } else { … … 73 73 if ( !is_user_logged_in() ) { 74 74 print '(<strong>' . __( 'Your address will be ' ); 75 if( constant( "VHOST" ) == 'no') {75 if( !is_subdomain_install() ) { 76 76 print $current_site->domain . $current_site->path . __( 'blogname' ); 77 77 } else { … … 421 421 } 422 422 if ($newblogname) { 423 if( constant( "VHOST" ) == 'no')423 if( !is_subdomain_install() ) 424 424 $newblog = 'http://' . $current_site->domain . $current_site->path . $newblogname . '/'; 425 425 else
Note: See TracChangeset
for help on using the changeset viewer.