Add New User: Remove trailing whitespace from button labels.

fixes #31175.
Built from https://develop.svn.wordpress.org/trunk@31298


git-svn-id: http://core.svn.wordpress.org/trunk@31279 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2015-01-29 14:54:21 +00:00
parent de1f0a0487
commit 72229b25c8
2 changed files with 3 additions and 3 deletions

View File

@ -324,7 +324,7 @@ if ( is_multisite() ) {
*/ */
do_action( 'user_new_form', 'add-existing-user' ); do_action( 'user_new_form', 'add-existing-user' );
?> ?>
<?php submit_button( __( 'Add Existing User '), 'primary', 'adduser', true, array( 'id' => 'addusersub' ) ); ?> <?php submit_button( __( 'Add Existing User' ), 'primary', 'adduser', true, array( 'id' => 'addusersub' ) ); ?>
</form> </form>
<?php <?php
} // is_multisite() } // is_multisite()
@ -431,7 +431,7 @@ if ( apply_filters( 'show_password_fields', true ) ) : ?>
do_action( 'user_new_form', 'add-new-user' ); do_action( 'user_new_form', 'add-new-user' );
?> ?>
<?php submit_button( __( 'Add New User '), 'primary', 'createuser', true, array( 'id' => 'createusersub' ) ); ?> <?php submit_button( __( 'Add New User' ), 'primary', 'createuser', true, array( 'id' => 'createusersub' ) ); ?>
</form> </form>
<?php } // current_user_can('create_users') ?> <?php } // current_user_can('create_users') ?>

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.2-alpha-31297'; $wp_version = '4.2-alpha-31298';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.