Skip to:
Content

bbPress.org


Ignore:
Timestamp:
11/16/2025 10:43:01 PM (10 months ago)
Author:
johnjamesjacoby
Message:

Tools - Code Improvement: Updates to the phpcs.xml.dist config file.

This commit implements the WordPress.WP.I18n.MissingTranslatorsComment code sniff, fixes a bunch of whitespace regressions from #3614 and #3613.

Props johnjamesjacoby, sirlouen.

In trunk, for 2.7.

Fixes #3615.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/templates/default/extras/taxonomy-topic-tag-edit.php

    r6371 r7360  
    1515
    1616        <div id="topic-tag" class="bbp-topic-tag">
    17                 <h1 class="entry-title"><?php printf( esc_html__( 'Topic Tag: %s', 'bbpress' ), '<span>' . bbp_get_topic_tag_name() . '</span>' ); ?></h1>
     17
     18                <h1 class="entry-title">
     19                        <?php
     20                        printf(
     21                                /* translators: %s: Topic current tag name wrapped in span tags */
     22                                esc_html__( 'Topic Tag: %s', 'bbpress' ), '<span>' . bbp_get_topic_tag_name() . '</span>'
     23                        );
     24                        ?>
     25                </h1>
    1826
    1927                <div class="entry-content">
Note: See TracChangeset for help on using the changeset viewer.