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:
parent
de1f0a0487
commit
72229b25c8
|
@ -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') ?>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @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.
|
||||
|
|
Loading…
Reference in New Issue