Changeset 16653
- Timestamp:
- 12/01/2010 05:31:24 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-signup.php
r16066 r16653 81 81 82 82 if ( !is_user_logged_in() ) { 83 print '(<strong>' . __( 'Your address will be ' );84 83 if ( !is_subdomain_install() ) 85 print$current_site->domain . $current_site->path . __( 'sitename' );84 $site = $current_site->domain . $current_site->path . __( 'sitename' ); 86 85 else 87 print __( 'domain.' ). $site_domain . $current_site->path;88 echo ' .</strong>) ' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!' ) . '</p>';86 $site = __( 'domain' ) . '.' . $site_domain . $current_site->path; 87 echo '<p>(<strong>' . sprintf( __('Your address will be %s.'), $site ) . '</strong>) ' . __( 'Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!' ) . '</p>'; 89 88 } 90 89
Note: See TracChangeset
for help on using the changeset viewer.