Fix nesting of an if statement. Show keyboard shortcuts option even when admin colors are disabled. Props pampfelimetten, fixes #12294
git-svn-id: http://svn.automattic.com/wordpress/trunk@13236 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5037479ed8
commit
c97d7d3884
|
@ -184,7 +184,7 @@ include ('admin-header.php');
|
|||
<td><label for="rich_editing"><input name="rich_editing" type="checkbox" id="rich_editing" value="false" <?php checked('false', $profileuser->rich_editing); ?> /> <?php _e('Disable the visual editor when writing'); ?></label></td>
|
||||
</tr>
|
||||
<?php endif; ?>
|
||||
<?php if (count($_wp_admin_css_colors) > 1 ) : ?>
|
||||
<?php if ( count($_wp_admin_css_colors) > 1 ) : ?>
|
||||
<tr>
|
||||
<th scope="row"><?php _e('Admin Color Scheme')?></th>
|
||||
<td><fieldset><legend class="screen-reader-text"><span><?php _e('Admin Color Scheme')?></span></legend>
|
||||
|
@ -207,14 +207,15 @@ foreach ( $_wp_admin_css_colors as $color => $color_info ): ?>
|
|||
<?php endforeach; ?>
|
||||
</fieldset></td>
|
||||
</tr>
|
||||
<?php if ( !( IS_PROFILE_PAGE && !$user_can_edit ) ) : ?>
|
||||
<?php
|
||||
endif;
|
||||
if ( !( IS_PROFILE_PAGE && !$user_can_edit ) ) : ?>
|
||||
<tr>
|
||||
<th scope="row"><?php _e( 'Keyboard Shortcuts' ); ?></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">More information</a>'); ?></td>
|
||||
</tr>
|
||||
<?php
|
||||
endif;
|
||||
endif;
|
||||
do_action('personal_options', $profileuser);
|
||||
?>
|
||||
</table>
|
||||
|
|
Loading…
Reference in New Issue