Making WordPress.org


Ignore:
Timestamp:
02/19/2017 10:21:18 PM (8 years ago)
Author:
ocean90
Message:

Login: On the post-register page show the email address to give users a hint whether they entered the correct email.

See #148.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/register-profile.php

    r4534 r4952  
    3131get_header();
    3232?>
    33 <div class="message info"><p><?php _e( "Please check your email for a confirmation link to set your password.", 'wporg-login' ); ?></p></div>
     33<div class="message info">
     34    <p><?php
     35        printf(
     36            /* translators: %s Email address */
     37            __( 'Please check your email %s for a confirmation link to set your password.', 'wporg-login' ),
     38            '<code>' . esc_html( wp_get_current_user()->user_email ) . '</code>'
     39        );
     40    ?></p>
     41</div>
    3442
    3543<p class="intro">
     
    4856
    4957<p id="nav">
    50     <a href="https://wordpress.org/"><?php _e( 'WordPress.org', 'wporg-login' ); ?></a> 
     58    <a href="https://wordpress.org/"><?php _e( 'WordPress.org', 'wporg-login' ); ?></a>
    5159</p>
    5260
Note: See TracChangeset for help on using the changeset viewer.