Changeset 6342 for trunk/bp-activity/bp-activity-template.php
- Timestamp:
- 09/18/2012 06:03:00 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/bp-activity-template.php
r6175 r6342 108 108 * Constructor method 109 109 * 110 * See definition of $defaults below, as well as $defaults in bp_has_activities(), for 110 * See definition of $defaults below, as well as $defaults in bp_has_activities(), for 111 111 * description of $args array 112 112 * … … 139 139 $args = bp_core_parse_args_array( $old_args_keys, $func_args ); 140 140 } 141 141 142 142 $defaults = array( 143 143 'page' => 1, … … 157 157 $r = wp_parse_args( $args, $defaults ); 158 158 extract( $r ); 159 159 160 160 $this->pag_page = isset( $_REQUEST[$page_arg] ) ? intval( $_REQUEST[$page_arg] ) : $page; 161 161 $this->pag_num = isset( $_REQUEST['num'] ) ? intval( $_REQUEST['num'] ) : $per_page; … … 2740 2740 } 2741 2741 add_action( 'bp_head', 'bp_activity_sitewide_feed' ); 2742 2743 ?>
Note: See TracChangeset
for help on using the changeset viewer.