Changeset 4454 for trunk/bp-themes/bp-default/members/single/activity.php
- Timestamp:
- 06/04/2011 10:33:40 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/members/single/activity.php
r3833 r4454 16 16 17 17 <li id="activity-filter-select" class="last"> 18 <select> 19 <option value="-1"><?php _e( 'No Filter', 'buddypress' ) ?></option> 20 <option value="activity_update"><?php _e( 'Show Updates', 'buddypress' ) ?></option> 18 <label for="activity-filter-by"><?php _e( 'Show:', 'buddypress' ); ?></label> 19 <select id="activity-filter-by"> 20 <option value="-1"><?php _e( 'Everything', 'buddypress' ) ?></option> 21 <option value="activity_update"><?php _e( 'Updates', 'buddypress' ) ?></option> 21 22 22 23 <?php … … 24 25 if ( bp_is_active( 'blogs' ) ) : ?> 25 26 26 <option value="new_blog_post"><?php _e( ' ShowBlog Posts', 'buddypress' ) ?></option>27 <option value="new_blog_comment"><?php _e( ' ShowBlog Comments', 'buddypress' ) ?></option>27 <option value="new_blog_post"><?php _e( 'Blog Posts', 'buddypress' ) ?></option> 28 <option value="new_blog_comment"><?php _e( 'Blog Comments', 'buddypress' ) ?></option> 28 29 29 30 <?php … … 32 33 if ( bp_is_active( 'friends' ) ) : ?> 33 34 34 <option value="friendship_accepted,friendship_created"><?php _e( ' Show Friendship Connections', 'buddypress' ) ?></option>35 <option value="friendship_accepted,friendship_created"><?php _e( 'Friendships', 'buddypress' ) ?></option> 35 36 36 37 <?php endif; … … 40 41 if ( bp_is_active( 'forums' ) ) : ?> 41 42 42 <option value="new_forum_topic"><?php _e( ' Show NewForum Topics', 'buddypress' ) ?></option>43 <option value="new_forum_post"><?php _e( ' ShowForum Replies', 'buddypress' ) ?></option>43 <option value="new_forum_topic"><?php _e( 'Forum Topics', 'buddypress' ) ?></option> 44 <option value="new_forum_post"><?php _e( 'Forum Replies', 'buddypress' ) ?></option> 44 45 45 46 <?php endif; … … 47 48 if ( bp_is_active( 'groups' ) ) : ?> 48 49 49 <option value="created_group"><?php _e( ' ShowNew Groups', 'buddypress' ) ?></option>50 <option value="joined_group"><?php _e( ' Show NewGroup Memberships', 'buddypress' ) ?></option>50 <option value="created_group"><?php _e( 'New Groups', 'buddypress' ) ?></option> 51 <option value="joined_group"><?php _e( 'Group Memberships', 'buddypress' ) ?></option> 51 52 52 53 <?php endif;
Note: See TracChangeset
for help on using the changeset viewer.