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/user-subscriptions.php

    r5159 r5688  
    1717
    1818            <div id="bbp-user-subscriptions" class="bbp-user-subscriptions">
    19                 <h2 class="entry-title"><?php _e( 'Subscribed Forums', 'bbpress' ); ?></h2>
     19                <h2 class="entry-title"><?php esc_html_e( 'Subscribed Forums', 'bbpress' ); ?></h2>
    2020                <div class="bbp-user-section">
    2121
     
    2626                    <?php else : ?>
    2727
    28                         <p><?php bbp_is_user_home() ? _e( 'You are not currently subscribed to any forums.', 'bbpress' ) : _e( 'This user is not currently subscribed to any forums.', 'bbpress' ); ?></p>
     28                        <p><?php bbp_is_user_home()
     29                            ? esc_html_e( 'You are not currently subscribed to any forums.',      'bbpress' )
     30                            : esc_html_e( 'This user is not currently subscribed to any forums.', 'bbpress' );
     31                        ?></p>
    2932
    3033                    <?php endif; ?>
     
    3235                </div>
    3336
    34                 <h2 class="entry-title"><?php _e( 'Subscribed Topics', 'bbpress' ); ?></h2>
     37                <h2 class="entry-title"><?php esc_html_e( 'Subscribed Topics', 'bbpress' ); ?></h2>
    3538                <div class="bbp-user-section">
    3639
     
    4548                    <?php else : ?>
    4649
    47                         <p><?php bbp_is_user_home() ? _e( 'You are not currently subscribed to any topics.', 'bbpress' ) : _e( 'This user is not currently subscribed to any topics.', 'bbpress' ); ?></p>
     50                        <p><?php bbp_is_user_home()
     51                            ? esc_html_e( 'You are not currently subscribed to any topics.',      'bbpress' )
     52                            : esc_html_e( 'This user is not currently subscribed to any topics.', 'bbpress' );
     53                        ?></p>
    4854
    4955                    <?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.