Changeset 3616 for trunk/bp-forums/bp-forums-templatetags.php
- Timestamp:
- 12/30/2010 04:34:05 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-forums/bp-forums-templatetags.php
r3610 r3616 140 140 return true; 141 141 } elseif ( $this->current_topic + 1 == $this->topic_count ) { 142 do_action(' loop_end');142 do_action('forum_loop_end'); 143 143 // Do some cleaning up after the loop 144 144 $this->rewind_topics(); … … 157 157 158 158 if ( $this->current_topic == 0 ) // loop has just started 159 do_action(' loop_start');159 do_action('forum_loop_start'); 160 160 } 161 161 } … … 799 799 return true; 800 800 } elseif ( $this->current_post + 1 == $this->post_count ) { 801 do_action(' loop_end');801 do_action('topic_loop_end'); 802 802 // Do some cleaning up after the loop 803 803 $this->rewind_posts(); … … 816 816 817 817 if ( $this->current_post == 0 ) // loop has just started 818 do_action(' loop_start');818 do_action('topic_loop_start'); 819 819 } 820 820 }
Note: See TracChangeset
for help on using the changeset viewer.