Skip to:
Content

BuddyPress.org

Ticket #2981: 2981.001.patch

File 2981.001.patch, 4.4 KB (added by r-a-y, 14 years ago)
  • buddypress/bp-blogs/bp-blogs-templatetags.php

     
    8383                if ( $this->current_blog + 1 < $this->blog_count ) {
    8484                        return true;
    8585                } elseif ( $this->current_blog + 1 == $this->blog_count ) {
    86                         do_action('loop_end');
     86                        do_action('blog_loop_end');
    8787                        // Do some cleaning up after the loop
    8888                        $this->rewind_blogs();
    8989                }
     
    9999                $this->blog = $this->next_blog();
    100100
    101101                if ( 0 == $this->current_blog ) // loop has just started
    102                         do_action('loop_start');
     102                        do_action('blog_loop_start');
    103103        }
    104104}
    105105
  • buddypress/bp-core/bp-core-templatetags.php

     
    8686                if ( $this->current_member + 1 < $this->member_count ) {
    8787                        return true;
    8888                } elseif ( $this->current_member + 1 == $this->member_count ) {
    89                         do_action('loop_end');
     89                        do_action('member_loop_end');
    9090                        // Do some cleaning up after the loop
    9191                        $this->rewind_members();
    9292                }
     
    102102                $this->member = $this->next_member();
    103103
    104104                if ( 0 == $this->current_member ) // loop has just started
    105                         do_action('loop_start');
     105                        do_action('member_loop_start');
    106106        }
    107107}
    108108
  • buddypress/bp-forums/bp-forums-templatetags.php

     
    139139                if ( $this->current_topic + 1 < $this->topic_count ) {
    140140                        return true;
    141141                } elseif ( $this->current_topic + 1 == $this->topic_count ) {
    142                         do_action('loop_end');
     142                        do_action('forum_loop_end');
    143143                        // Do some cleaning up after the loop
    144144                        $this->rewind_topics();
    145145                }
     
    156156                $this->topic = (object)$this->topic;
    157157
    158158                if ( $this->current_topic == 0 ) // loop has just started
    159                         do_action('loop_start');
     159                        do_action('forum_loop_start');
    160160        }
    161161}
    162162
     
    798798                if ( $this->current_post + 1 < $this->post_count ) {
    799799                        return true;
    800800                } elseif ( $this->current_post + 1 == $this->post_count ) {
    801                         do_action('loop_end');
     801                        do_action('topic_loop_end');
    802802                        // Do some cleaning up after the loop
    803803                        $this->rewind_posts();
    804804                }
     
    815815                $this->post = (object)$this->post;
    816816
    817817                if ( $this->current_post == 0 ) // loop has just started
    818                         do_action('loop_start');
     818                        do_action('topic_loop_start');
    819819        }
    820820}
    821821
  • buddypress/bp-groups/bp-groups-templatetags.php

     
    105105                if ( $this->current_group + 1 < $this->group_count ) {
    106106                        return true;
    107107                } elseif ( $this->current_group + 1 == $this->group_count ) {
    108                         do_action('loop_end');
     108                        do_action('group_loop_end');
    109109                        // Do some cleaning up after the loop
    110110                        $this->rewind_groups();
    111111                }
     
    124124                        $this->group = new BP_Groups_Group( $this->group->group_id );
    125125
    126126                if ( 0 == $this->current_group ) // loop has just started
    127                         do_action('loop_start');
     127                        do_action('group_loop_start');
    128128        }
    129129}
    130130
     
    20662066                if ( $this->current_request + 1 < $this->request_count ) {
    20672067                        return true;
    20682068                } elseif ( $this->current_request + 1 == $this->request_count ) {
    2069                         do_action('loop_end');
     2069                        do_action('group_request_loop_end');
    20702070                        // Do some cleaning up after the loop
    20712071                        $this->rewind_requests();
    20722072                }
     
    20822082                $this->request = $this->next_request();
    20832083
    20842084                if ( 0 == $this->current_request ) // loop has just started
    2085                         do_action('loop_start');
     2085                        do_action('group_request_loop_start');
    20862086        }
    20872087}
    20882088
  • buddypress/bp-messages/bp-messages-templatetags.php

     
    9999                if ( $this->current_thread + 1 < $this->thread_count ) {
    100100                        return true;
    101101                } elseif ( $this->current_thread + 1 == $this->thread_count ) {
    102                         do_action('loop_end');
     102                        do_action('messages_box_loop_end');
    103103                        // Do some cleaning up after the loop
    104104                        $this->rewind_threads();
    105105                }
     
    143143                $this->thread->last_message_content = $this->thread->messages[$last_message_index]->message;
    144144
    145145                if ( 0 == $this->current_thread ) // loop has just started
    146                         do_action('loop_start');
     146                        do_action('messages_box_loop_start');
    147147        }
    148148}
    149149