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-replies.php

    r5403 r5688  
    1616    <li class="bbp-header">
    1717
    18         <div class="bbp-reply-author"><?php  _e( 'Author',  'bbpress' ); ?></div><!-- .bbp-reply-author -->
     18        <div class="bbp-reply-author"><?php esc_html_e( 'Author',  'bbpress' ); ?></div><!-- .bbp-reply-author -->
    1919
    2020        <div class="bbp-reply-content">
    2121
    22             <?php if ( !bbp_show_lead_topic() ) : ?>
     22            <?php if ( ! bbp_show_lead_topic() ) : ?>
    2323
    24                 <?php _e( 'Posts', 'bbpress' ); ?>
     24                <?php esc_html_e( 'Posts', 'bbpress' ); ?>
    2525
    2626            <?php else : ?>
    2727
    28                 <?php _e( 'Replies', 'bbpress' ); ?>
     28                <?php esc_html_e( 'Replies', 'bbpress' ); ?>
    2929
    3030            <?php endif; ?>
     
    5454    <li class="bbp-footer">
    5555
    56         <div class="bbp-reply-author"><?php  _e( 'Author',  'bbpress' ); ?></div>
     56        <div class="bbp-reply-author"><?php esc_html_e( 'Author',  'bbpress' ); ?></div>
    5757
    5858        <div class="bbp-reply-content">
    5959
    60             <?php if ( !bbp_show_lead_topic() ) : ?>
     60            <?php if ( ! bbp_show_lead_topic() ) : ?>
    6161
    62                 <?php _e( 'Posts', 'bbpress' ); ?>
     62                <?php esc_html_e( 'Posts', 'bbpress' ); ?>
    6363
    6464            <?php else : ?>
    6565
    66                 <?php _e( 'Replies', 'bbpress' ); ?>
     66                <?php esc_html_e( 'Replies', 'bbpress' ); ?>
    6767
    6868            <?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.