Ticket #7435: comment-reply-tabindex.diff
File comment-reply-tabindex.diff, 1.1 KB (added by , 16 years ago) |
---|
-
wp-admin/includes/template.php
1099 1099 <?php wp_comment_form_unfiltered_html_nonce(); ?> 1100 1100 1101 1101 <?php echo apply_filters( 'wp_comment_reply_content', ' 1102 <div id="replycontainer"><textarea rows="5" cols="40" name="replycontent" tabindex="10 " id="replycontent"></textarea></div>1102 <div id="replycontainer"><textarea rows="5" cols="40" name="replycontent" tabindex="1000" id="replycontent"></textarea></div> 1103 1103 '); ?> 1104 1104 1105 <p id="replysubmit"><input type="button" onclick="commentReply.close();" class="button" value="<?php _e('Cancel'); ?>" />1106 <input type="button" onclick="commentReply.send();" class="button" value="<?php _e('Submit Reply'); ?>" /></p>1105 <p id="replysubmit"><input type="button" onclick="commentReply.close();" class="button" tabindex="1002" value="<?php _e('Cancel'); ?>" /> 1106 <input type="button" onclick="commentReply.send();" class="button" tabindex="1001" value="<?php _e('Submit Reply'); ?>" /></p> 1107 1107 </form> 1108 1108 </div> 1109 1109 <?php