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/loop-topics.php

    r4733 r5688  
    1717
    1818        <ul class="forum-titles">
    19             <li class="bbp-topic-title"><?php _e( 'Topic', 'bbpress' ); ?></li>
    20             <li class="bbp-topic-voice-count"><?php _e( 'Voices', 'bbpress' ); ?></li>
    21             <li class="bbp-topic-reply-count"><?php bbp_show_lead_topic() ? _e( 'Replies', 'bbpress' ) : _e( 'Posts', 'bbpress' ); ?></li>
    22             <li class="bbp-topic-freshness"><?php _e( 'Freshness', 'bbpress' ); ?></li>
     19            <li class="bbp-topic-title"><?php esc_html_e( 'Topic', 'bbpress' ); ?></li>
     20            <li class="bbp-topic-voice-count"><?php esc_html_e( 'Voices', 'bbpress' ); ?></li>
     21            <li class="bbp-topic-reply-count"><?php bbp_show_lead_topic()
     22                ? esc_html_e( 'Replies', 'bbpress' )
     23                : esc_html_e( 'Posts',   'bbpress' );
     24            ?></li>
     25            <li class="bbp-topic-freshness"><?php esc_html_e( 'Freshness', 'bbpress' ); ?></li>
    2326        </ul>
    2427
Note: See TracChangeset for help on using the changeset viewer.