Changeset 1844 for trunk/bp-forums/bp-forums-templatetags.php
- Timestamp:
- 09/10/2009 06:34:52 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/bp-forums/bp-forums-templatetags.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-forums/bp-forums-templatetags.php
r1790 r1844 138 138 return false; 139 139 140 return $forum_template->has_topics();140 return apply_filters( 'bp_has_topics', $forum_template->has_topics(), &$forum_template ); 141 141 } 142 142 … … 600 600 return false; 601 601 602 return $topic_template->has_posts();602 return apply_filters( 'bp_has_topic_posts', $topic_template->has_posts(), &$topic_template ); 603 603 } 604 604
Note: See TracChangeset
for help on using the changeset viewer.