Changeset 2695 for trunk/bp-forums/bp-forums-templatetags.php
- Timestamp:
- 02/12/2010 12:31:49 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-forums/bp-forums-templatetags.php
r2641 r2695 209 209 return apply_filters( 'bp_has_topics', $forum_template->has_topics(), &$forum_template ); 210 210 } 211 /* DEPRECATED use bp_has_forum_topics() */212 function bp_has_topics( $args = '' ) { return bp_has_forum_topics( $args ); }213 211 214 212 function bp_forum_topics() { … … 216 214 return $forum_template->user_topics(); 217 215 } 218 /* DEPRECATED use bp_has_forum_topics() */219 function bp_topics() { return bp_forum_topics(); }220 216 221 217 function bp_the_forum_topic() { … … 223 219 return $forum_template->the_topic(); 224 220 } 225 /* DEPRECATED use bp_the_forum_topic() */226 function bp_the_topic() { return bp_the_forum_topic(); }227 221 228 222 function bp_the_topic_id() { … … 823 817 return apply_filters( 'bp_has_topic_posts', $topic_template->has_posts(), &$topic_template ); 824 818 } 825 /* DEPRECATED use bp_has_forum_topic_posts() */826 function bp_has_topic_posts() { return bp_has_forum_topic_posts( $args ); }827 819 828 820 function bp_forum_topic_posts() { … … 830 822 return $topic_template->user_posts(); 831 823 } 832 /* DEPRECATED use bp_forum_topic_posts() */833 function bp_topic_posts() { return bp_forum_topic_posts(); }834 824 835 825 function bp_the_forum_topic_post() { … … 837 827 return $topic_template->the_post(); 838 828 } 839 /* DEPRECATED use bp_the_forum_topic_post() */840 function bp_the_topic_post() { return bp_the_forum_topic_post(); }841 829 842 830 function bp_the_topic_post_id() {
Note: See TracChangeset
for help on using the changeset viewer.