Changes in trunk/wp-signup.php [14898:15235]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-signup.php
r14898 r15235 77 77 78 78 if ( !is_subdomain_install() ) 79 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 />';79 echo '<span class="prefix_address">' . $current_site->domain . $current_site->path . '</span><input name="blogname" type="text" id="blogname" value="'. esc_attr($blogname) .'" maxlength="60" /><br />'; 80 80 else 81 echo '<input name="blogname" type="text" id="blogname" value="'.esc_attr($blogname).'" maxlength=" 50" /><span class="suffix_address">.' . $current_site->domain. '</span><br />';81 echo '<input name="blogname" type="text" id="blogname" value="'.esc_attr($blogname).'" maxlength="60" /><span class="suffix_address">.' . ( $site_domain = preg_replace( '|^www\.|', '', $current_site->domain ) ) . '</span><br />'; 82 82 83 83 if ( !is_user_logged_in() ) { … … 86 86 print $current_site->domain . $current_site->path . __( 'sitename' ); 87 87 else 88 print __( 'domain.' ) . $ current_site->domain . $current_site->path;89 echo '. )</strong>' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!' ) . '</p>';88 print __( 'domain.' ) . $site_domain . $current_site->path; 89 echo '.</strong>) ' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!' ) . '</p>'; 90 90 } 91 91 … … 96 96 <p class="error"><?php echo $errmsg ?></p> 97 97 <?php } 98 echo '<input name="blog_title" type="text" id="blog_title" value="'.esc_attr($blog_title).'" /> </p>';98 echo '<input name="blog_title" type="text" id="blog_title" value="'.esc_attr($blog_title).'" />'; 99 99 ?> 100 100 … … 103 103 <label for="blog_public_on"><?php _e('Privacy:') ?></label> 104 104 <?php _e('Allow my site to appear in search engines like Google, Technorati, and in public listings around this network.'); ?> 105 < div style="clear:both;"></div>105 <br style="clear:both" /> 106 106 <label class="checkbox" for="blog_public_on"> 107 107 <input type="radio" id="blog_public_on" name="blog_public" value="1" <?php if ( !isset( $_POST['blog_public'] ) || $_POST['blog_public'] == '1' ) { ?>checked="checked"<?php } ?> /> … … 133 133 echo '<p class="error">'.$errmsg.'</p>'; 134 134 } 135 echo '<input name="user_name" type="text" id="user_name" value="'. esc_attr($user_name) .'" maxlength=" 50" /><br />';135 echo '<input name="user_name" type="text" id="user_name" value="'. esc_attr($user_name) .'" maxlength="60" /><br />'; 136 136 _e( '(Must be at least 4 characters, letters and numbers only.)' ); 137 137 ?> … … 177 177 $blogs = get_blogs_of_user($current_user->ID); 178 178 if ( !empty($blogs) ) { ?> 179 <p> 180 < ?php _e( 'Sites you are already a member of:' ) ?>179 180 <p><?php _e( 'Sites you are already a member of:' ) ?></p> 181 181 <ul> 182 182 <?php foreach ( $blogs as $blog ) { … … 185 185 } ?> 186 186 </ul> 187 </p>188 187 <?php } ?> 189 188
Note: See TracChangeset
for help on using the changeset viewer.