Changeset 653 for trunk/xpressme_integration_kit/wp-content
- Timestamp:
- Sep 9, 2010, 12:06:20 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xpressme_integration_kit/wp-content/themes/xpress_default/comments.php
r651 r653 111 111 <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" /> 112 112 <?php endif; ?> 113 <?php do_action('comment_form', $post->ID); ?> 113 <?php 114 ob_start(); 115 do_action('comment_form', $post->ID); 116 $output = ob_get_contents(); 117 ob_end_clean(); 118 echo str_replace(' id="_wp', ' id="wp', $output); 119 ?> 114 120 </div> 115 121 </form>
Note: See TracChangeset
for help on using the changeset viewer.