Skip to:
Content

bbPress.org

Ticket #1403: reply-page.diff

File reply-page.diff, 1.6 KB (added by GautamGupta, 16 years ago)
  • loop-bbp_replies.php

     
    1313
    1414        <?php get_template_part( 'pagination', 'bbp_replies' ); ?>
    1515
    16         <table class="bbp-replies" id="topic-<?php bbp_topic_id(); ?>">
     16        <table class="bbp-replies" id="reply-<?php bbp_reply_id(); ?>">
    1717                <thead>
    1818                        <tr>
    19                                 <th class="bbp-reply-author"><?php _e( 'Author', 'bbpress' ); ?></th>
     19                                <th class="bbp-reply-author"><?php  _e( 'Author', 'bbpress' ); ?></th>
    2020                                <th class="bbp-reply-content"><?php _e( 'Replies', 'bbpress' ); ?></th>
    2121                        </tr>
    2222                </thead>
    2323
    2424                <tfoot>
     25
     26                        <?php if ( bbp_is_topic() ) : ?>
     27
    2528                        <tr>
    2629                                <td colspan="2"><?php bbp_topic_admin_links(); ?></td>
    2730                        </tr>
     31
     32                        <?php endif; ?>
    2833                </tfoot>
    2934
    3035                <tbody>
     
    7378
    7479                                        </td>
    7580
    76                                 </tr><!-- #topic-<?php bbp_topic_id(); ?> -->
     81                                </tr><!-- #reply-<?php bbp_reply_id(); ?> -->
    7782
    7883                        <?php endwhile; ?>
    7984
  • single-bbp_reply.php

     
    1212                <div id="container">
    1313                        <div id="content" role="main">
    1414
    15                                 <?php get_template_part( 'loop', 'bbp_replies' ); ?>
     15                                        <div id="bbp-reply-wrapper-<?php bbp_reply_id(); ?>" class="bbp-reply-wrapper">
     16                                                <div class="entry-content">
    1617
     18                                                        <?php get_template_part( 'loop', 'bbp_replies' ); ?>
     19
     20                                                </div>
     21                                        </div><!-- #bbp-reply-wrapper-<?php bbp_reply_id(); ?> -->
     22
    1723                        </div><!-- #content -->
    1824                </div><!-- #container -->
    1925