Add labels to the Personal Options input fields on the user profile editing screen. Fixes #30101. Props Ankit K Gupta
Built from https://develop.svn.wordpress.org/trunk@30027 git-svn-id: http://core.svn.wordpress.org/trunk@30027 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3179629853
commit
f74f20ab7f
|
@ -243,7 +243,7 @@ if ( ! IS_PROFILE_PAGE ) {
|
|||
<table class="form-table">
|
||||
<?php if ( ! ( IS_PROFILE_PAGE && ! $user_can_edit ) ) : ?>
|
||||
<tr class="user-rich-editing-wrap">
|
||||
<th scope="row"><?php _e('Visual Editor')?></th>
|
||||
<th scope="row"><label for="rich_editing"><?php _e( 'Visual Editor' )?></label></th>
|
||||
<td><label for="rich_editing"><input name="rich_editing" type="checkbox" id="rich_editing" value="false" <?php if ( ! empty( $profileuser->rich_editing ) ) checked( 'false', $profileuser->rich_editing ); ?> /> <?php _e( 'Disable the visual editor when writing' ); ?></label></td>
|
||||
</tr>
|
||||
<?php endif; ?>
|
||||
|
@ -266,12 +266,12 @@ if ( ! IS_PROFILE_PAGE ) {
|
|||
endif; // $_wp_admin_css_colors
|
||||
if ( !( IS_PROFILE_PAGE && !$user_can_edit ) ) : ?>
|
||||
<tr class="user-comment-shortcuts-wrap">
|
||||
<th scope="row"><?php _e( 'Keyboard Shortcuts' ); ?></th>
|
||||
<th scope="row"><label for="comment_shortcuts"><?php _e( 'Keyboard Shortcuts' ); ?></label></th>
|
||||
<td><label for="comment_shortcuts"><input type="checkbox" name="comment_shortcuts" id="comment_shortcuts" value="true" <?php if ( ! empty( $profileuser->comment_shortcuts ) ) checked( 'true', $profileuser->comment_shortcuts ); ?> /> <?php _e('Enable keyboard shortcuts for comment moderation.'); ?></label> <?php _e('<a href="http://codex.wordpress.org/Keyboard_Shortcuts" target="_blank">More information</a>'); ?></td>
|
||||
</tr>
|
||||
<?php endif; ?>
|
||||
<tr class="show-admin-bar user-admin-bar-front-wrap">
|
||||
<th scope="row"><?php _e('Toolbar')?></th>
|
||||
<th scope="row"><label for="admin_bar_front"><?php _e( 'Toolbar' )?></label></th>
|
||||
<td><fieldset><legend class="screen-reader-text"><span><?php _e('Toolbar') ?></span></legend>
|
||||
<label for="admin_bar_front">
|
||||
<input name="admin_bar_front" type="checkbox" id="admin_bar_front" value="1"<?php checked( _get_admin_bar_pref( 'front', $profileuser->ID ) ); ?> />
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.1-alpha-30026';
|
||||
$wp_version = '4.1-alpha-30027';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue