Changeset 5737 for trunk/bp-themes/bp-default/members/single/activity.php
- Timestamp:
- 02/12/2012 08:09:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/members/single/activity.php
r4961 r5737 13 13 <ul> 14 14 15 <?php bp_get_options_nav() ?>15 <?php bp_get_options_nav(); ?> 16 16 17 17 <li id="activity-filter-select" class="last"> 18 18 <label for="activity-filter-by"><?php _e( 'Show:', 'buddypress' ); ?></label> 19 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>20 <option value="-1"><?php _e( 'Everything', 'buddypress' ); ?></option> 21 <option value="activity_update"><?php _e( 'Updates', 'buddypress' ); ?></option> 22 22 23 23 <?php … … 25 25 if ( bp_is_active( 'blogs' ) ) : ?> 26 26 27 <option value="new_blog_post"><?php _e( 'Posts', 'buddypress' ) ?></option>28 <option value="new_blog_comment"><?php _e( 'Comments', 'buddypress' ) ?></option>27 <option value="new_blog_post"><?php _e( 'Posts', 'buddypress' ); ?></option> 28 <option value="new_blog_comment"><?php _e( 'Comments', 'buddypress' ); ?></option> 29 29 30 30 <?php … … 33 33 if ( bp_is_active( 'friends' ) ) : ?> 34 34 35 <option value="friendship_accepted,friendship_created"><?php _e( 'Friendships', 'buddypress' ) ?></option>35 <option value="friendship_accepted,friendship_created"><?php _e( 'Friendships', 'buddypress' ); ?></option> 36 36 37 37 <?php endif; … … 41 41 if ( bp_is_active( 'forums' ) ) : ?> 42 42 43 <option value="new_forum_topic"><?php _e( 'Forum Topics', 'buddypress' ) ?></option>44 <option value="new_forum_post"><?php _e( 'Forum 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> 45 45 46 46 <?php endif; … … 48 48 if ( bp_is_active( 'groups' ) ) : ?> 49 49 50 <option value="created_group"><?php _e( 'New Groups', 'buddypress' ) ?></option>51 <option value="joined_group"><?php _e( 'Group 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> 52 52 53 53 <?php endif;
Note: See TracChangeset
for help on using the changeset viewer.