Skip to:
Content

bbPress.org


Ignore:
Timestamp:
04/19/2015 04:27:37 PM (10 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/user-favorites.php

    r4733 r5688  
    1313
    1414    <div id="bbp-user-favorites" class="bbp-user-favorites">
    15         <h2 class="entry-title"><?php _e( 'Favorite Forum Topics', 'bbpress' ); ?></h2>
     15        <h2 class="entry-title"><?php esc_html_e( 'Favorite Forum Topics', 'bbpress' ); ?></h2>
    1616        <div class="bbp-user-section">
    1717
     
    2626            <?php else : ?>
    2727
    28                 <p><?php bbp_is_user_home() ? _e( 'You currently have no favorite topics.', 'bbpress' ) : _e( 'This user has no favorite topics.', 'bbpress' ); ?></p>
     28                <p><?php bbp_is_user_home()
     29                    ? esc_html_e( 'You currently have no favorite topics.', 'bbpress' )
     30                    : esc_html_e( 'This user has no favorite topics.',      'bbpress' );
     31                ?></p>
    2932
    3033            <?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.