Changeset 2284 for trunk/bp-themes/bp-default/members/single/activity.php
- Timestamp:
- 01/09/2010 04:16:51 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/members/single/activity.php
r2270 r2284 3 3 <li class="feed"><a href="<?php bp_activities_member_rss_link() ?>" title="RSS Feed"><?php _e( 'RSS', 'buddypress' ) ?></a></li> 4 4 5 <?php do_action( 'bp_activity_member_syndication_options') ?>5 <?php do_action( 'bp_member_activity_syndication_options' ) ?> 6 6 7 7 <li id="activity-filter-select" class="last"> … … 17 17 <option value="friendship_accepted,friendship_created"><?php _e( 'Show Friendship Connections', 'buddypress' ) ?></option> 18 18 19 <?php do_action( 'bp_ activity_personal_filter_options' ) ?>19 <?php do_action( 'bp_member_activity_filter_options' ) ?> 20 20 </select> 21 21 </li> 22 22 </ul> 23 </div> 23 </div><!-- .item-list-tabs --> 24 25 <?php do_action( 'bp_before_member_activity_post_form' ) ?> 24 26 25 27 <?php if ( is_user_logged_in() && bp_is_my_profile() ) : ?> … … 27 29 <?php endif; ?> 28 30 31 <?php do_action( 'bp_after_member_activity_post_form' ) ?> 32 <?php do_action( 'bp_before_member_activity_content' ) ?> 33 29 34 <div class="activity"> 30 <?php // 'activity/activity-loop.php' loaded here via AJAX. ?> 31 </div> 35 <?php 36 // The loop will be loaded here via AJAX on page load to retain selected settings and not waste cycles. 37 // If you're concerned about no-script functionality, uncomment the following line. 32 38 33 <?php do_action( 'bp_directory_members_content' ) ?> 39 // locate_template( array( 'activity/activity-loop.php' ), true ); 40 ?> 41 </div><!-- .activity --> 42 43 <?php do_action( 'bp_after_member_activity_content' ) ?>
Note: See TracChangeset
for help on using the changeset viewer.