Skip to:
Content

bbPress.org


Ignore:
Timestamp:
01/13/2011 01:52:41 AM (15 years ago)
Author:
johnjamesjacoby
Message:

Use new action hooks for forum/topic/reply column headers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-admin/bbp-admin.php

    r2793 r2794  
    836836
    837837            // simple hack to show the forum description under the title
    838             the_content();
     838            bbp_forum_content( $forum->ID );
    839839        }
    840840
     
    11571157            unset( $actions['inline hide-if-no-js'] );
    11581158
    1159             bbp_topic_content();
     1159            bbp_topic_content( $topic->ID );
    11601160
    11611161            // Show view link if it's not set, the topic is trashed and the user can view trashed topics
     
    14881488                $actions['view'] = '<a href="' . bbp_get_reply_permalink( $reply->ID ) . '" title="' . esc_attr( sprintf( __( 'View &#8220;%s&#8221;', 'bbpress' ), bbp_get_reply_title( $reply->ID ) ) ) . '" rel="permalink">' . __( 'View', 'bbpress' ) . '</a>';
    14891489
    1490             bbp_reply_content();
     1490            bbp_reply_content( $reply->ID );
    14911491
    14921492            // Only show the actions if the user is capable of viewing them
Note: See TracChangeset for help on using the changeset viewer.