Changeset 13705 for trunk/wp-admin/options-general.php
- Timestamp:
- 03/15/2010 05:18:00 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/options-general.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-general.php
r13702 r13705 107 107 <span class="setting-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> 108 108 <?php 109 if ( $new_admin_email = get_option( 'new_admin_email' ) ) : ?> 109 $new_admin_email = get_option( 'new_admin_email' ); 110 if ( $new_admin_email && $new_admin_email != get_option('admin_email') ) : ?> 110 111 <div class="updated inline"> 111 <p><?php printf( __('There is a pending change of the admin e-mail to <code>% s</code>.'), $new_admin_email); ?></p>112 <p><?php printf( __('There is a pending change of the admin e-mail to <code>%1$s</code>. <a href="%2$s">Cancel</a>'), $new_admin_email, esc_url( admin_url( 'options.php?dismiss=new_admin_email' ) ) ); ?></p> 112 113 </div> 113 114 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.