Ticket #25229: comments.diff
File comments.diff, 754 bytes (added by , 11 years ago) |
---|
-
wp-includes/theme-compat/comments.php
91 91 <p><input name="submit" type="submit" id="submit" tabindex="5" value="<?php esc_attr_e('Submit Comment'); ?>" /> 92 92 <?php comment_id_fields(); ?> 93 93 </p> 94 <?php do_action('comment_form', $post->ID); ?> 94 <?php 95 /** 96 * Add data to the end of the comment form below the submit button. 97 * 98 * This use of the comment_form action hook is part of a deprecated file as of 3.0.0. 99 * 100 * @since 1.5.2 101 * 102 * @param int $post->ID The post ID. 103 */ 104 do_action('comment_form', $post->ID); 105 ?> 95 106 96 107 </form> 97 108