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/extras/page-forum-statistics.php

    r4803 r5688  
    2020            <div class="entry-content">
    2121
    22                 <?php get_the_content() ? the_content() : _e( '<p>Here are the statistics and popular topics of our forums.</p>', 'bbpress' ); ?>
     22                <?php get_the_content() ? the_content() : wpautop( esc_html__( 'Here are the statistics and popular topics of our forums.', 'bbpress' ) ); ?>
    2323
    2424                <div id="bbpress-forums">
     
    3232                    <?php if ( bbp_view_query( 'popular' ) ) : ?>
    3333
    34                         <h2 class="entry-title"><?php _e( 'Popular Topics', 'bbpress' ); ?></h2>
     34                        <h2 class="entry-title"><?php esc_html_e( 'Popular Topics', 'bbpress' ); ?></h2>
    3535
    3636                        <?php bbp_get_template_part( 'pagination', 'topics' ); ?>
Note: See TracChangeset for help on using the changeset viewer.