Add New User: Remove trailing whitespace from button labels.

fixes #31175.

git-svn-id: https://develop.svn.wordpress.org/trunk@31298 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2015-01-29 14:53:05 +00:00
parent 8821a5531c
commit 4914b74403
1 changed files with 2 additions and 2 deletions

View File

@ -324,7 +324,7 @@ if ( is_multisite() ) {
*/
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>
<?php
} // is_multisite()
@ -431,7 +431,7 @@ if ( apply_filters( 'show_password_fields', true ) ) : ?>
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>
<?php } // current_user_can('create_users') ?>