Skip to:
Content

bbPress.org

Changeset 6777 for trunk/src/bbpress.php


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/bbpress.php

    r6770 r6777  
    513513                'rewrite'             => bbp_get_forum_post_type_rewrite(),
    514514                'supports'            => bbp_get_forum_post_type_supports(),
    515                 'description'         => __( 'bbPress Forums', 'bbpress' ),
     515                'description'         => esc_html__( 'bbPress Forums', 'bbpress' ),
    516516                'capabilities'        => bbp_get_forum_caps(),
    517517                'capability_type'     => array( 'forum', 'forums' ),
     
    539539                'rewrite'             => bbp_get_topic_post_type_rewrite(),
    540540                'supports'            => bbp_get_topic_post_type_supports(),
    541                 'description'         => __( 'bbPress Topics', 'bbpress' ),
     541                'description'         => esc_html__( 'bbPress Topics', 'bbpress' ),
    542542                'capabilities'        => bbp_get_topic_caps(),
    543543                'capability_type'     => array( 'topic', 'topics' ),
     
    565565                'rewrite'             => bbp_get_reply_post_type_rewrite(),
    566566                'supports'            => bbp_get_reply_post_type_supports(),
    567                 'description'         => __( 'bbPress Replies', 'bbpress' ),
     567                'description'         => esc_html__( 'bbPress Replies', 'bbpress' ),
    568568                'capabilities'        => bbp_get_reply_caps(),
    569569                'capability_type'     => array( 'reply', 'replies' ),
     
    709709        bbp_register_view(
    710710            'popular',
    711             __( 'Most popular topics', 'bbpress' ),
     711            esc_html__( 'Most popular topics', 'bbpress' ),
    712712            apply_filters( 'bbp_register_view_popular', array(
    713713                'meta_key'      => '_bbp_reply_count',
     
    722722        bbp_register_view(
    723723            'no-replies',
    724             __( 'Topics with no replies', 'bbpress' ),
     724            esc_html__( 'Topics with no replies', 'bbpress' ),
    725725            apply_filters( 'bbp_register_view_no_replies', array(
    726726                'meta_key'      => '_bbp_reply_count',
Note: See TracChangeset for help on using the changeset viewer.