Skip to:
Content

bbPress.org


Ignore:
Timestamp:
04/19/2015 04:27:37 PM (11 years ago)
Author:
johnjamesjacoby
Message:

Templates: Escape all gettext output in default template parts. See #1999.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/templates/default/bbpress/content-statistics.php

    r4794 r5688  
    1515    <?php do_action( 'bbp_before_statistics' ); ?>
    1616
    17     <dt><?php _e( 'Registered Users', 'bbpress' ); ?></dt>
     17    <dt><?php esc_html_e( 'Registered Users', 'bbpress' ); ?></dt>
    1818    <dd>
    1919        <strong><?php echo esc_html( $stats['user_count'] ); ?></strong>
    2020    </dd>
    2121
    22     <dt><?php _e( 'Forums', 'bbpress' ); ?></dt>
     22    <dt><?php esc_html_e( 'Forums', 'bbpress' ); ?></dt>
    2323    <dd>
    2424        <strong><?php echo esc_html( $stats['forum_count'] ); ?></strong>
    2525    </dd>
    2626
    27     <dt><?php _e( 'Topics', 'bbpress' ); ?></dt>
     27    <dt><?php esc_html_e( 'Topics', 'bbpress' ); ?></dt>
    2828    <dd>
    2929        <strong><?php echo esc_html( $stats['topic_count'] ); ?></strong>
    3030    </dd>
    3131
    32     <dt><?php _e( 'Replies', 'bbpress' ); ?></dt>
     32    <dt><?php esc_html_e( 'Replies', 'bbpress' ); ?></dt>
    3333    <dd>
    3434        <strong><?php echo esc_html( $stats['reply_count'] ); ?></strong>
    3535    </dd>
    3636
    37     <dt><?php _e( 'Topic Tags', 'bbpress' ); ?></dt>
     37    <dt><?php esc_html_e( 'Topic Tags', 'bbpress' ); ?></dt>
    3838    <dd>
    3939        <strong><?php echo esc_html( $stats['topic_tag_count'] ); ?></strong>
     
    4242    <?php if ( !empty( $stats['empty_topic_tag_count'] ) ) : ?>
    4343
    44         <dt><?php _e( 'Empty Topic Tags', 'bbpress' ); ?></dt>
     44        <dt><?php esc_html_e( 'Empty Topic Tags', 'bbpress' ); ?></dt>
    4545        <dd>
    4646            <strong><?php echo esc_html( $stats['empty_topic_tag_count'] ); ?></strong>
     
    5151    <?php if ( !empty( $stats['topic_count_hidden'] ) ) : ?>
    5252
    53         <dt><?php _e( 'Hidden Topics', 'bbpress' ); ?></dt>
     53        <dt><?php esc_html_e( 'Hidden Topics', 'bbpress' ); ?></dt>
    5454        <dd>
    5555            <strong>
     
    6262    <?php if ( !empty( $stats['reply_count_hidden'] ) ) : ?>
    6363
    64         <dt><?php _e( 'Hidden Replies', 'bbpress' ); ?></dt>
     64        <dt><?php esc_html_e( 'Hidden Replies', 'bbpress' ); ?></dt>
    6565        <dd>
    6666            <strong>
Note: See TracChangeset for help on using the changeset viewer.