Skip to:
Content

bbPress.org


Ignore:
Timestamp:
01/24/2018 01:01:49 AM (7 years ago)
Author:
johnjamesjacoby
Message:

General: user escaped GetText variant where no HTML is ever allowed in strings.

This change brings a few dozen strings up to par with the others, and ensures that strings are escaped on their way into the runtime environment.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/replies/template.php

    r6770 r6777  
    525525
    526526        // Get empty reply title fallback.
    527         $reply_title = sprintf( __( 'Reply To: %s', 'bbpress' ), $topic_title );
     527        $reply_title = sprintf( esc_html__( 'Reply To: %s', 'bbpress' ), $topic_title );
    528528
    529529        // Filter & return
Note: See TracChangeset for help on using the changeset viewer.