Changeset 18533 for trunk/wp-admin/options-general.php
- Timestamp:
- 08/11/2011 06:17:30 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-general.php
r18386 r18533 93 93 <?php if ( !is_multisite() ) { ?> 94 94 <tr valign="top"> 95 <th scope="row"><label for="siteurl"><?php _e('WordPress address (URL)') ?></label></th>95 <th scope="row"><label for="siteurl"><?php _e('WordPress Address (URL)') ?></label></th> 96 96 <td><input name="siteurl" type="text" id="siteurl" value="<?php form_option('siteurl'); ?>"<?php disabled( defined( 'WP_SITEURL' ) ); ?> class="regular-text code<?php if ( defined( 'WP_SITEURL' ) ) echo ' disabled' ?>" /></td> 97 97 </tr> 98 98 <tr valign="top"> 99 <th scope="row"><label for="home"><?php _e('Site address (URL)') ?></label></th>99 <th scope="row"><label for="home"><?php _e('Site Address (URL)') ?></label></th> 100 100 <td><input name="home" type="text" id="home" value="<?php form_option('home'); ?>"<?php disabled( defined( 'WP_HOME' ) ); ?> class="regular-text code<?php if ( defined( 'WP_HOME' ) ) echo ' disabled' ?>" /> 101 101 <span class="description"><?php _e('Enter the address here if you want your site homepage <a href="http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory">to be different from the directory</a> you installed WordPress.'); ?></span></td> 102 102 </tr> 103 103 <tr valign="top"> 104 <th scope="row"><label for="admin_email"><?php _e('E-mail address') ?> </label></th>104 <th scope="row"><label for="admin_email"><?php _e('E-mail Address') ?> </label></th> 105 105 <td><input name="admin_email" type="text" id="admin_email" value="<?php form_option('admin_email'); ?>" class="regular-text" /> 106 106 <span class="description"><?php _e('This address is used for admin purposes, like new user notification.') ?></span></td> … … 121 121 <?php } else { ?> 122 122 <tr valign="top"> 123 <th scope="row"><label for="new_admin_email"><?php _e('E-mail address') ?> </label></th>123 <th scope="row"><label for="new_admin_email"><?php _e('E-mail Address') ?> </label></th> 124 124 <td><input name="new_admin_email" type="text" id="new_admin_email" value="<?php form_option('admin_email'); ?>" class="regular-text code" /> 125 125 <span class="description"><?php _e('This address is used for admin purposes. If you change this we will send you an e-mail at your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>') ?></span> … … 297 297 ?> 298 298 <tr valign="top"> 299 <th width="33%" scope="row"><?php _e('Site language:') ?></th>299 <th width="33%" scope="row"><?php _e('Site Language') ?></th> 300 300 <td> 301 301 <select name="WPLANG" id="WPLANG">
Note: See TracChangeset
for help on using the changeset viewer.