Skip to:
Content

BuddyPress.org


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

    r13442 r13822  
    6464                        <?php
    6565                        /* translators: %s: all groups count */
    66                         printf( __( 'All Groups %s', 'buddypress' ), '<span>' . bp_get_total_group_count() . '</span>' );
     66                        printf( esc_html__( 'All Groups %s', 'buddypress' ), '<span>' . esc_html( bp_get_total_group_count() ) . '</span>' );
    6767                        ?>
    6868                    </a>
     
    7474                            <?php
    7575                            /* translators: %s: current user groups count */
    76                             printf( __( 'My Groups %s', 'buddypress' ), '<span>' . bp_get_total_group_count_for_user( bp_loggedin_user_id() ) . '</span>' );
     76                            printf( esc_html__( 'My Groups %s', 'buddypress' ), '<span>' . esc_html( bp_get_total_group_count_for_user( bp_loggedin_user_id() ) ) . '</span>' );
    7777                            ?>
    7878                        </a>
     
    105105                <li id="groups-order-select" class="last filter">
    106106
    107                     <label for="groups-order-by"><?php _e( 'Order By:', 'buddypress' ); ?></label>
     107                    <label for="groups-order-by"><?php esc_html_e( 'Order By:', 'buddypress' ); ?></label>
    108108
    109109                    <select id="groups-order-by">
    110                         <option value="active"><?php _e( 'Last Active', 'buddypress' ); ?></option>
    111                         <option value="popular"><?php _e( 'Most Members', 'buddypress' ); ?></option>
    112                         <option value="newest"><?php _e( 'Newly Created', 'buddypress' ); ?></option>
    113                         <option value="alphabetical"><?php _e( 'Alphabetical', 'buddypress' ); ?></option>
     110                        <option value="active"><?php esc_html_e( 'Last Active', 'buddypress' ); ?></option>
     111                        <option value="popular"><?php esc_html_e( 'Most Members', 'buddypress' ); ?></option>
     112                        <option value="newest"><?php esc_html_e( 'Newly Created', 'buddypress' ); ?></option>
     113                        <option value="alphabetical"><?php esc_html_e( 'Alphabetical', 'buddypress' ); ?></option>
    114114
    115115                        <?php
     
    126126        </div>
    127127
    128         <h2 class="bp-screen-reader-text"><?php
    129             /* translators: accessibility text */
    130             _e( 'Groups directory', 'buddypress' );
    131         ?></h2>
     128        <h2 class="bp-screen-reader-text">
     129            <?php
     130                /* translators: accessibility text */
     131                esc_html_e( 'Groups directory', 'buddypress' );
     132            ?>
     133        </h2>
    132134
    133135        <div id="groups-dir-list" class="groups dir-list">
Note: See TracChangeset for help on using the changeset viewer.