From 4e283a8047d7812f0bc77332bfb064eafeb38708 Mon Sep 17 00:00:00 2001 From: nacin Date: Tue, 7 Sep 2010 17:52:43 +0000 Subject: [PATCH] Return the character range removed in [15594]. fixes #14633, props demetris. git-svn-id: http://svn.automattic.com/wordpress/trunk@15595 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/ms-functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/ms-functions.php b/wp-includes/ms-functions.php index 1e10e4abf..b75ed7eee 100644 --- a/wp-includes/ms-functions.php +++ b/wp-includes/ms-functions.php @@ -423,7 +423,7 @@ function wpmu_validate_user_signup($user_name, $user_email) { preg_match( '/[a-z0-9]+/', $user_name, $maybe ); if ( $user_name != $orig_username || $user_name != $maybe[0] ) { - $errors->add( 'user_name', __( 'Only lowercase letters and numbers are allowed.' ) ); + $errors->add( 'user_name', __( 'Only lowercase letters (a-z) and numbers are allowed.' ) ); $user_name = $orig_username; }