Skip to:
Content

bbPress.org


Ignore:
Timestamp:
11/18/2025 12:55:54 AM (4 months ago)
Author:
johnjamesjacoby
Message:

Tools - Code Improvement: stop ignoring Universal.WhiteSpace.DisallowInlineTabs.NonIndentTabsUsed sniff.

This change replaces inline tabs with spaces from a bunch of files where they have crept in over the years.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/topics.php

    r7360 r7372  
    116116        // Overview
    117117        get_current_screen()->add_help_tab( array(
    118             'id'        => 'overview',
    119             'title'     => __( 'Overview', 'bbpress' ),
    120             'content'   =>
     118            'id'      => 'overview',
     119            'title'   => __( 'Overview', 'bbpress' ),
     120            'content' =>
    121121                '<p>' . __( 'This screen displays the individual topics on your site. You can customize the display of this screen to suit your workflow.', 'bbpress' ) . '</p>'
    122122        ) );
     
    124124        // Screen Content
    125125        get_current_screen()->add_help_tab( array(
    126             'id'        => 'screen-content',
    127             'title'     => __( 'Screen Content', 'bbpress' ),
    128             'content'   =>
     126            'id'      => 'screen-content',
     127            'title'   => __( 'Screen Content', 'bbpress' ),
     128            'content' =>
    129129                '<p>' . __( 'You can customize the display of this screen&#8217;s contents in a number of ways:', 'bbpress' ) . '</p>' .
    130130                '<ul>' .
     
    138138        // Available Actions
    139139        get_current_screen()->add_help_tab( array(
    140             'id'        => 'action-links',
    141             'title'     => __( 'Available Actions', 'bbpress' ),
    142             'content'   =>
     140            'id'      => 'action-links',
     141            'title'   => __( 'Available Actions', 'bbpress' ),
     142            'content' =>
    143143                '<p>' . __( 'Hovering over a row in the topics list will display action links that allow you to manage your topic. You can perform the following actions:', 'bbpress' ) . '</p>' .
    144144                '<ul>' .
     
    156156        // Bulk Actions
    157157        get_current_screen()->add_help_tab( array(
    158             'id'        => 'bulk-actions',
    159             'title'     => __( 'Bulk Actions', 'bbpress' ),
    160             'content'   =>
     158            'id'      => 'bulk-actions',
     159            'title'   => __( 'Bulk Actions', 'bbpress' ),
     160            'content' =>
    161161                '<p>' . __( 'You can also edit, spam, or move multiple topics to the trash at once. Select the topics you want to act on using the checkboxes, then select the action you want to take from the Bulk Actions menu and click Apply.',           'bbpress' ) . '</p>' .
    162162                '<p>' . __( 'When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected topics at once. To remove a topic from the grouping, just click the x next to its name in the Bulk Edit area that appears.', 'bbpress' ) . '</p>'
Note: See TracChangeset for help on using the changeset viewer.