diff --git src/wp-admin/network/settings.php src/wp-admin/network/settings.php
index deb6397b7b..715f7fdc03 100644
|
|
|
if ( isset( $_GET['updated'] ) ) {
|
| 161 | 161 | <td> |
| 162 | 162 | <input name="new_admin_email" type="email" id="admin_email" aria-describedby="admin-email-desc" class="regular-text" value="<?php echo esc_attr( get_site_option( 'admin_email' ) ); ?>" /> |
| 163 | 163 | <p class="description" id="admin-email-desc"> |
| 164 | | <?php _e( 'This address is used for admin purposes. If you change this we will send you an email at your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>' ); ?> |
| | 164 | <?php _e( 'This address is used for admin purposes. If you change this, we will send you an email at your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>' ); ?> |
| 165 | 165 | </p> |
| 166 | 166 | <?php |
| 167 | 167 | $new_admin_email = get_site_option( 'new_admin_email' ); |
diff --git src/wp-admin/options-general.php src/wp-admin/options-general.php
index 825763163d..599be14080 100644
|
|
|
if ( ! is_multisite() ) {
|
| 110 | 110 | <tr> |
| 111 | 111 | <th scope="row"><label for="new_admin_email"><?php _e( 'Administration Email Address' ); ?></label></th> |
| 112 | 112 | <td><input name="new_admin_email" type="email" id="new_admin_email" aria-describedby="new-admin-email-description" value="<?php form_option( 'admin_email' ); ?>" class="regular-text ltr" /> |
| 113 | | <p class="description" id="new-admin-email-description"><?php _e( 'This address is used for admin purposes. If you change this we will send you an email at your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>' ); ?></p> |
| | 113 | <p class="description" id="new-admin-email-description"><?php _e( 'This address is used for admin purposes. If you change this, we will send you an email at your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>' ); ?></p> |
| 114 | 114 | <?php |
| 115 | 115 | $new_admin_email = get_option( 'new_admin_email' ); |
| 116 | 116 | if ( $new_admin_email && $new_admin_email != get_option( 'admin_email' ) ) : |
diff --git src/wp-admin/user-edit.php src/wp-admin/user-edit.php
index aaee3401c3..59ad80457c 100644
|
|
|
endif;
|
| 505 | 505 | if ( $profileuser->ID == $current_user->ID ) : |
| 506 | 506 | ?> |
| 507 | 507 | <p class="description" id="email-description"> |
| 508 | | <?php _e( 'If you change this we will send you an email at your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>' ); ?> |
| | 508 | <?php _e( 'If you change this, we will send you an email at your new address to confirm it. <strong>The new address will not become active until confirmed.</strong>' ); ?> |
| 509 | 509 | </p> |
| 510 | 510 | <?php |
| 511 | 511 | endif; |