Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/12/2012 08:09:34 PM (14 years ago)
Author:
johnjamesjacoby
Message:

Add ending semicolons to bp-default where omitted. Fixes #4002.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-themes/bp-default/members/single/activity.php

    r4961 r5737  
    1313        <ul>
    1414
    15                 <?php bp_get_options_nav() ?>
     15                <?php bp_get_options_nav(); ?>
    1616
    1717                <li id="activity-filter-select" class="last">
    1818                        <label for="activity-filter-by"><?php _e( 'Show:', 'buddypress' ); ?></label>
    1919                        <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>
    2222
    2323                                <?php
     
    2525                                        if ( bp_is_active( 'blogs' ) ) : ?>
    2626
    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>
    2929
    3030                                        <?php
     
    3333                                        if ( bp_is_active( 'friends' ) ) : ?>
    3434
    35                                                 <option value="friendship_accepted,friendship_created"><?php _e( 'Friendships', 'buddypress' ) ?></option>
     35                                                <option value="friendship_accepted,friendship_created"><?php _e( 'Friendships', 'buddypress' ); ?></option>
    3636
    3737                                        <?php endif;
     
    4141                                if ( bp_is_active( 'forums' ) ) : ?>
    4242
    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>
    4545
    4646                                <?php endif;
     
    4848                                if ( bp_is_active( 'groups' ) ) : ?>
    4949
    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>
    5252
    5353                                <?php endif;
Note: See TracChangeset for help on using the changeset viewer.