Changeset 56572 for trunk/src/wp-includes/user.php
- Timestamp:
- 09/14/2023 01:23:37 AM (2 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/user.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r56559 r56572 3762 3762 $email = get_user_meta( get_current_user_id(), '_new_email', true ); 3763 3763 if ( $email ) { 3764 /* translators: %s: New email address. */ 3765 echo '<div class="notice notice-info"><p>' . sprintf( __( 'Your email address has not been updated yet. Please check your inbox at %s for a confirmation email.' ), '<code>' . esc_html( $email['newemail'] ) . '</code>' ) . '</p></div>'; 3764 $message = sprintf( 3765 /* translators: %s: New email address. */ 3766 __( 'Your email address has not been updated yet. Please check your inbox at %s for a confirmation email.' ), 3767 '<code>' . esc_html( $email['newemail'] ) . '</code>' 3768 ); 3769 wp_admin_notice( $message, array( 'type' => 'info' ) ); 3766 3770 } 3767 3771 }
Note: See TracChangeset
for help on using the changeset viewer.