Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/29/2024 06:50:42 PM (4 months ago)
Author:
imath
Message:

BP Legacy: improve PHP code standards using WPCS

See #7228 (trunk)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-legacy/buddypress/members/single/friends.php

    r12082 r13822  
    1818            <li id="members-order-select" class="last filter">
    1919
    20                 <label for="members-friends"><?php _e( 'Order By:', 'buddypress' ); ?></label>
     20                <label for="members-friends"><?php esc_html_e( 'Order By:', 'buddypress' ); ?></label>
    2121                <select id="members-friends">
    22                     <option value="active"><?php _e( 'Last Active', 'buddypress' ); ?></option>
    23                     <option value="newest"><?php _e( 'Newest Registered', 'buddypress' ); ?></option>
    24                     <option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option>
     22                    <option value="active"><?php esc_html_e( 'Last Active', 'buddypress' ); ?></option>
     23                    <option value="newest"><?php esc_html_e( 'Newest Registered', 'buddypress' ); ?></option>
     24                    <option value="alphabetical"><?php esc_html_e( 'Alphabetical', 'buddypress' ); ?></option>
    2525
    2626                    <?php
     
    5555
    5656        <?php if (is_user_logged_in() ) : ?>
    57             <h2 class="bp-screen-reader-text"><?php
    58                 /* translators: accessibility text */
    59                 _e( 'My friends', 'buddypress' );
    60             ?></h2>
     57            <h2 class="bp-screen-reader-text">
     58                <?php
     59                    /* translators: accessibility text */
     60                    esc_html_e( 'My friends', 'buddypress' );
     61                ?>
     62            </h2>
    6163        <?php else : ?>
    62             <h2 class="bp-screen-reader-text"><?php
    63                 /* translators: accessibility text */
    64                 _e( 'Friends', 'buddypress' );
    65             ?></h2>
     64            <h2 class="bp-screen-reader-text">
     65                <?php
     66                    /* translators: accessibility text */
     67                    esc_html_e( 'Friends', 'buddypress' );
     68                ?>
     69            </h2>
    6670        <?php endif ?>
    6771
Note: See TracChangeset for help on using the changeset viewer.