Combine two strings. props jiehanzheng. fixes #20500.

git-svn-id: https://develop.svn.wordpress.org/trunk@20556 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2012-04-21 06:40:31 +00:00
parent 40b676037c
commit 878c428f12
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ function confirm_user_signup($user_name, $user_email) {
?>
<h2><?php printf( __( '%s is your new username' ), $user_name) ?></h2>
<p><?php _e( 'But, before you can start using your new username, <strong>you must activate it</strong>.' ) ?></p>
<p><?php printf(__( 'Check your inbox at <strong>%1$s</strong> and click the link given.' ), $user_email) ?></p>
<p><?php printf( __( 'Check your inbox at <strong>%s</strong> and click the link given.' ), $user_email ); ?></p>
<p><?php _e( 'If you do not activate your username within two days, you will have to sign up again.' ); ?></p>
<?php
do_action( 'signup_finished' );