Changeset 32799
- Timestamp:
- 06/16/2015 07:52:39 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/user-edit.php
r32625 r32799 403 403 if ( $new_email && $new_email['newemail'] != $current_user->user_email && $profileuser->ID == $current_user->ID ) : ?> 404 404 <div class="updated inline"> 405 <p><?php printf( __('There is a pending change of your e-mail to <code>%1$s</code>. <a href="%2$s">Cancel</a>'), $new_email['newemail'], esc_url( self_admin_url( 'profile.php?dismiss=' . $current_user->ID . '_new_email' ) ) ); ?></p> 405 <p><?php 406 printf( 407 __( 'There is a pending change of your e-mail to %1$s. <a href="%2$s">Cancel</a>' ), 408 '<code>' . $new_email['newemail'] . '</code>', 409 esc_url( self_admin_url( 'profile.php?dismiss=' . $current_user->ID . '_new_email' ) ) 410 ); ?></p> 406 411 </div> 407 412 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.