Skip to:
Content

BuddyPress.org

Ticket #2129: 2129_forum_topic.diff

File 2129_forum_topic.diff, 1.8 KB (added by dwenaus, 15 years ago)
  • bp-themes/bp-default/groups/single/forum/topic.php

     
     1<?php do_action( 'bp_before_group_forum_topic' ) ?>
     2
    13<?php if ( bp_has_forum_topic_posts() ) : ?>
    24
    35        <form action="<?php bp_forum_topic_action() ?>" method="post" id="forum-topic-form" class="standard-form">
     
    1416
    1517                </div>
    1618
     19                <?php do_action( 'bp_before_group_forum_topic_posts' ) ?>
     20
    1721                <div id="topic-meta">
    1822                        <h3><?php bp_the_topic_title() ?> (<?php bp_the_topic_total_post_count() ?>)</h3>
    1923                        <a class="button" href="<?php bp_forum_permalink() ?>/">&larr; <?php _e( 'Group Forum', 'buddypress' ) ?></a> &nbsp; <a class="button" href="<?php bp_forum_directory_permalink() ?>/"><?php _e( 'Group Forum Directory', 'buddypress') ?></a></span>
     
    2630                <ul id="topic-post-list" class="item-list">
    2731                        <?php while ( bp_forum_topic_posts() ) : bp_the_forum_topic_post(); ?>
    2832
    29                                 <li id="post-<?php bp_the_topic_post_id() ?>">
     33                                <li id="post-<?php bp_the_topic_post_id() ?>" <?php do_action( 'groups_forum_topic_post_class' ) ?>>
    3034                                        <div class="poster-meta">
    3135                                                <a href="<?php bp_the_topic_post_poster_link() ?>">
    3236                                                        <?php bp_the_topic_post_poster_avatar( 'width=40&height=40' ) ?>
     
    4953                        <?php endwhile; ?>
    5054                </ul>
    5155
     56                <?php do_action( 'bp_after_group_forum_topic_posts' ) ?>
     57
    5258                <div class="pagination no-ajax">
    5359
    5460                        <div id="post-count" class="pag-count">
     
    108114                <p><?php _e( 'There are no posts for this topic.', 'buddypress' ) ?></p>
    109115        </div>
    110116
    111 <?php endif;?>
    112  No newline at end of file
     117<?php endif;?>
     118
     119<?php do_action( 'bp_after_group_forum_topic' ) ?>