From a021ab4ce00cb229c5aae1ec2d8ba99213a77b68 Mon Sep 17 00:00:00 2001 From: Jeremy Felt Date: Tue, 24 May 2016 03:43:27 +0000 Subject: [PATCH] Multisite: Disable autocapitalize and autocorrect for `user_name` input on signup Props rafaelangeline. Fixes #36833. Built from https://develop.svn.wordpress.org/trunk@37546 git-svn-id: http://core.svn.wordpress.org/trunk@37514 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-signup.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 65ac9c725a..ca6ca2c2e3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37545'; +$wp_version = '4.6-alpha-37546'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-signup.php b/wp-signup.php index bff24987dc..fa2c6780a3 100644 --- a/wp-signup.php +++ b/wp-signup.php @@ -218,7 +218,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.)' ); ?>