Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/29/2024 06:50:42 PM (20 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/blogs.php

    r12082 r13822  
    1717        <li id="blogs-order-select" class="last filter">
    1818
    19             <label for="blogs-order-by"><?php _e( 'Order By:', 'buddypress' ); ?></label>
     19            <label for="blogs-order-by"><?php esc_html_e( 'Order By:', 'buddypress' ); ?></label>
    2020            <select id="blogs-order-by">
    21                 <option value="active"><?php _e( 'Last Active', 'buddypress' ); ?></option>
    22                 <option value="newest"><?php _e( 'Newest', 'buddypress' ); ?></option>
    23                 <option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option>
     21                <option value="active"><?php esc_html_e( 'Last Active', 'buddypress' ); ?></option>
     22                <option value="newest"><?php esc_html_e( 'Newest', 'buddypress' ); ?></option>
     23                <option value="alphabetical"><?php esc_html_e( 'Alphabetical', 'buddypress' ); ?></option>
    2424
    2525                <?php
Note: See TracChangeset for help on using the changeset viewer.