Ticket #5915: 5915.diff
File 5915.diff, 1.8 KB (added by , 9 years ago) |
---|
-
src/bp-activity/bp-activity-template.php
195 195 'per_page' => 20, 196 196 'page_arg' => 'acpage', 197 197 'max' => false, 198 'count_total' => false, 198 199 'sort' => false, 199 200 'include' => false, 200 201 'exclude' => false, … … 226 227 $this->activities = bp_activity_get_specific( array( 227 228 'activity_ids' => explode( ',', $include ), 228 229 'max' => $max, 230 'count_total' => $count_total, 229 231 'page' => $this->pag_page, 230 232 'per_page' => $this->pag_num, 231 233 'sort' => $sort, … … 240 242 $this->activities = bp_activity_get( array( 241 243 'display_comments' => $display_comments, 242 244 'max' => $max, 245 'count_total' => $count_total, 243 246 'per_page' => $this->pag_num, 244 247 'page' => $this->pag_page, 245 248 'sort' => $sort, … … 586 589 'page' => 1, // which page to load 587 590 'per_page' => 20, // number of items per page 588 591 'max' => false, // max number to return 592 'count_total' => false, // 589 593 'show_hidden' => $show_hidden, // Show activity items that are hidden site-wide? 590 594 'spam' => 'ham_only', // Hide spammed items 591 595 … … 719 723 'per_page' => $per_page, 720 724 'page_arg' => $page_arg, 721 725 'max' => $max, 726 'count_total' => $count_total, 722 727 'sort' => $sort, 723 728 'include' => $include, 724 729 'exclude' => $exclude,