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/extend/buddypress/loader.php

    r6573 r6777  
    4040        parent::start(
    4141            'forums',
    42             __( 'Forums', 'bbpress' ),
     42            esc_html__( 'Forums', 'bbpress' ),
    4343            bbpress()->includes_dir . 'extend/buddypress/'
    4444        );
     
    105105            'root_slug'     => isset( $bp->pages->forums->slug ) ? $bp->pages->forums->slug : BP_FORUMS_SLUG,
    106106            'has_directory' => false,
    107             'search_string' => __( 'Search Forums...', 'bbpress' ),
     107            'search_string' => esc_html__( 'Search Forums...', 'bbpress' ),
    108108        );
    109109
     
    175175        // Add 'Forums' to the main navigation
    176176        $main_nav = array(
    177             'name'                => __( 'Forums', 'bbpress' ),
     177            'name'                => esc_html__( 'Forums', 'bbpress' ),
    178178            'slug'                => $this->slug,
    179179            'position'            => 80,
     
    197197        // Topics started
    198198        $sub_nav[] = array(
    199             'name'            => __( 'Topics Started', 'bbpress' ),
     199            'name'            => esc_html__( 'Topics Started', 'bbpress' ),
    200200            'slug'            => bbp_get_topic_archive_slug(),
    201201            'parent_url'      => $forums_link,
     
    208208        // Replies to topics
    209209        $sub_nav[] = array(
    210             'name'            => __( 'Replies Created', 'bbpress' ),
     210            'name'            => esc_html__( 'Replies Created', 'bbpress' ),
    211211            'slug'            => bbp_get_reply_archive_slug(),
    212212            'parent_url'      => $forums_link,
     
    220220        if ( bbp_is_engagements_active() ) {
    221221            $sub_nav[] = array(
    222                 'name'            => __( 'Engagements', 'bbpress' ),
     222                'name'            => esc_html__( 'Engagements', 'bbpress' ),
    223223                'slug'            => bbp_get_user_engagements_slug(),
    224224                'parent_url'      => $forums_link,
     
    233233        if ( bbp_is_favorites_active() ){
    234234            $sub_nav[] = array(
    235                 'name'            => __( 'Favorites', 'bbpress' ),
     235                'name'            => esc_html__( 'Favorites', 'bbpress' ),
    236236                'slug'            => bbp_get_user_favorites_slug(),
    237237                'parent_url'      => $forums_link,
     
    246246        if ( bp_is_my_profile() && bbp_is_subscriptions_active() ) {
    247247            $sub_nav[] = array(
    248                 'name'            => __( 'Subscriptions', 'bbpress' ),
     248                'name'            => esc_html__( 'Subscriptions', 'bbpress' ),
    249249                'slug'            => bbp_get_user_subscriptions_slug(),
    250250                'parent_url'      => $forums_link,
     
    297297                'parent' => buddypress()->my_account_menu_id,
    298298                'id'     => 'my-account-' . $this->id,
    299                 'title'  => __( 'Forums', 'bbpress' ),
     299                'title'  => esc_html__( 'Forums', 'bbpress' ),
    300300                'href'   => $my_account_link
    301301            );
     
    305305                'parent' => 'my-account-' . $this->id,
    306306                'id'     => 'my-account-' . $this->id . '-topics',
    307                 'title'  => __( 'Topics Started', 'bbpress' ),
     307                'title'  => esc_html__( 'Topics Started', 'bbpress' ),
    308308                'href'   => $my_topics_link
    309309            );
     
    313313                'parent' => 'my-account-' . $this->id,
    314314                'id'     => 'my-account-' . $this->id . '-replies',
    315                 'title'  => __( 'Replies Created', 'bbpress' ),
     315                'title'  => esc_html__( 'Replies Created', 'bbpress' ),
    316316                'href'   => $my_replies_link
    317317            );
     
    322322                    'parent' => 'my-account-' . $this->id,
    323323                    'id'     => 'my-account-' . $this->id . '-engagements',
    324                     'title'  => __( 'Engagements', 'bbpress' ),
     324                    'title'  => esc_html__( 'Engagements', 'bbpress' ),
    325325                    'href'   => $my_engagements_link
    326326                );
     
    332332                    'parent' => 'my-account-' . $this->id,
    333333                    'id'     => 'my-account-' . $this->id . '-favorites',
    334                     'title'  => __( 'Favorite Topics', 'bbpress' ),
     334                    'title'  => esc_html__( 'Favorite Topics', 'bbpress' ),
    335335                    'href'   => $my_favorites_link
    336336                );
     
    342342                    'parent' => 'my-account-' . $this->id,
    343343                    'id'     => 'my-account-' . $this->id . '-subscriptions',
    344                     'title'  => __( 'Subscribed Topics', 'bbpress' ),
     344                    'title'  => esc_html__( 'Subscribed Topics', 'bbpress' ),
    345345                    'href'   => $my_subscriptions_link
    346346                );
     
    362362        if ( bp_is_forums_component() ) {
    363363            if ( bp_is_my_profile() ) {
    364                 $bp->bp_options_title = __( 'Forums', 'bbpress' );
     364                $bp->bp_options_title = esc_html__( 'Forums', 'bbpress' );
    365365            } elseif ( bp_is_user() ) {
    366366                $bp->bp_options_avatar = bp_core_fetch_avatar( array(
Note: See TracChangeset for help on using the changeset viewer.