From 4c94266ca0500660f2525c94d71661893defdde6 Mon Sep 17 00:00:00 2001 From: wpmuguru Date: Fri, 11 Jun 2010 15:26:11 +0000 Subject: [PATCH] signup username length consistent with user_login field, props niallkennedy, fixes #13842 git-svn-id: http://svn.automattic.com/wordpress/trunk@15217 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-signup.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-signup.php b/wp-signup.php index 88021a4caa..7e8a1311cd 100644 --- a/wp-signup.php +++ b/wp-signup.php @@ -76,9 +76,9 @@ function show_blog_form($blogname = '', $blog_title = '', $errors = '') { ' . $current_site->domain . $current_site->path . '
'; + echo '' . $current_site->domain . $current_site->path . '
'; else - echo '.' . ( $site_domain = preg_replace( '|^www\.|', '', $current_site->domain ) ) . '
'; + echo '.' . ( $site_domain = preg_replace( '|^www\.|', '', $current_site->domain ) ) . '
'; if ( !is_user_logged_in() ) { print '(' . __( 'Your address will be ' ); @@ -132,7 +132,7 @@ function show_user_form($user_name = '', $user_email = '', $errors = '') { if ( $errmsg = $errors->get_error_message('user_name') ) { echo '

'.$errmsg.'

'; } - echo '
'; + echo '
'; _e( '(Must be at least 4 characters, letters and numbers only.)' ); ?>