Combine two strings. props jiehanzheng. fixes #20500.

git-svn-id: http://svn.automattic.com/wordpress/trunk@20556 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2012-04-21 06:40:31 +00:00
parent e098306abe
commit 30a15b7c87
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' );