Changeset 2780 for branches/plugin/bbp-admin/bbp-admin.php
- Timestamp:
- 01/09/2011 07:49:28 AM (15 years ago)
- File:
-
- 1 edited
-
branches/plugin/bbp-admin/bbp-admin.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-admin/bbp-admin.php
r2777 r2780 1085 1085 * @param array $actions Actions 1086 1086 * @param array $topic Topic object 1087 * @uses the_content() To output topic content1087 * @uses bbp_topic_content() To output topic content 1088 1088 * @uses bbp_get_topic_permalink() To get the topic link 1089 1089 * @uses bbp_get_topic_title() To get the topic title … … 1107 1107 unset( $actions['inline hide-if-no-js'] ); 1108 1108 1109 the_content();1109 bbp_topic_content(); 1110 1110 1111 1111 // Show view link if it's not set, the topic is trashed and the user can view trashed topics … … 1417 1417 * @param array $actions Actions 1418 1418 * @param array $reply Reply object 1419 * @uses the_content() To output reply content1419 * @uses bbp_reply_content() To output reply content 1420 1420 * @uses bbp_get_reply_permalink() To get the reply link 1421 1421 * @uses bbp_get_reply_title() To get the reply title … … 1440 1440 $actions['view'] = '<a href="' . bbp_get_reply_permalink( $reply->ID ) . '" title="' . esc_attr( sprintf( __( 'View “%s”', 'bbpress' ), bbp_get_reply_title( $reply->ID ) ) ) . '" rel="permalink">' . __( 'View', 'bbpress' ) . '</a>'; 1441 1441 1442 the_content();1442 bbp_reply_content(); 1443 1443 1444 1444 // Only show the actions if the user is capable of viewing them … … 1599 1599 ?> 1600 1600 1601 <td class="first b b-topic_tags"><span class="total-count"><?php echo $num; ?></ a></td>1601 <td class="first b b-topic_tags"><span class="total-count"><?php echo $num; ?></span></td> 1602 1602 <td class="t topic_tags"><?php echo $text; ?></td> 1603 1603 … … 1629 1629 ?> 1630 1630 1631 <td class="b b-users"><span class="total-count"><?php echo $num; ?></ a></td>1631 <td class="b b-users"><span class="total-count"><?php echo $num; ?></span></td> 1632 1632 <td class="last t users"><?php echo $text; ?></td> 1633 1633
Note: See TracChangeset
for help on using the changeset viewer.