Ticket #14665: wordpress.comment.shortcuts.link.fix.r1.diff
| File wordpress.comment.shortcuts.link.fix.r1.diff, 1.1 KB (added by , 16 years ago) |
|---|
-
wp-admin/user-edit.php
206 206 if ( !( IS_PROFILE_PAGE && !$user_can_edit ) ) : ?> 207 207 <tr> 208 208 <th scope="row"><?php _e( 'Keyboard Shortcuts' ); ?></th> 209 <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>209 <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> 210 210 </tr> 211 211 <?php 212 212 endif;