Skip to:
Content

bbPress.org

Ticket #3294: trac-3294-phpcs-fix-accidental-space-indents.patch

File trac-3294-phpcs-fix-accidental-space-indents.patch, 7.7 KB (added by jrf, 5 years ago)

Fix accidental space indentation

  • src/includes/admin/settings.php

     
    18671867                'id'      => 'overview',
    18681868                'title'   => esc_html__( 'Overview', 'bbpress' ),
    18691869                'content' => '<p>' . esc_html__( 'This screen provides access to all of the Forums settings.',                          'bbpress' ) . '</p>' .
    1870                                          '<p>' . esc_html__( 'Please see the additional help tabs for more information on each individual section.', 'bbpress' ) . '</p>'
     1870                                        '<p>' . esc_html__( 'Please see the additional help tabs for more information on each individual section.', 'bbpress' ) . '</p>'
    18711871        ) );
    18721872
    18731873        // Main Settings
     
    18751875                'id'      => 'main_settings',
    18761876                'title'   => esc_html__( 'Main Settings', 'bbpress' ),
    18771877                'content' => '<p>' . esc_html__( 'The "Main Settings" section includes a number of options:', 'bbpress' ) . '</p>' .
    1878                                          '<p>' .
     1878                                        '<p>' .
    18791879                                                '<ul>' .
    18801880                                                        '<li>' . esc_html__( 'You can choose to lock a post after a certain number of minutes. "Locking post editing" will prevent the author from editing some amount of time after saving a post.',              'bbpress' ) . '</li>' .
    18811881                                                        '<li>' . esc_html__( '"Throttle time" is the amount of time required between posts from a single author. The higher the throttle time, the longer a user will need to wait between posting to the forum.', 'bbpress' ) . '</li>' .
     
    18951895                'id'      => 'theme_packages',
    18961896                'title'   => esc_html__( 'Theme Packages', 'bbpress' ),
    18971897                'content' => '<p>' . esc_html__( 'The "Theme Packages" section allows you to choose which theme package should be used.', 'bbpress' ) . '</p>' .
    1898                                          '<p>' .
     1898                                        '<p>' .
    18991899                                                '<ul>' .
    19001900                                                        '<li>' . esc_html__( 'The "bbPress Default" package is installed by default.',      'bbpress' ) . '</li>' .
    19011901                                                        '<li>' . esc_html__( 'Some themes may choose to ignore this setting entirely.',     'bbpress' ) . '</li>' .
     
    19131913                                                        '<li>' . esc_html__( 'This is comparable to the WordPress "Reading Settings" page, where you can set the number of posts that should show on blog pages and in feeds.', 'bbpress' ) . '</li>' .
    19141914                                                        '<li>' . esc_html__( 'These are broken up into two separate groups: one for what appears in your theme, another for RSS feeds.',                                        'bbpress' ) . '</li>' .
    19151915                                                '</ul>' .
    1916                                          '<p>'
     1916                                        '<p>'
    19171917        ) );
    19181918
    19191919        // Slugs
     
    19261926                                                        '<li>' . esc_html__( '"Single Slugs" are used as a prefix when viewing an individual forum, topic, reply, user, or view.',                                                                                          'bbpress' ) . '</li>' .
    19271927                                                        '<li>' . esc_html__( 'In the event of a slug collision with WordPress or BuddyPress, a warning will appear next to the problem slug(s).', 'bbpress' ) . '</li>' .
    19281928                                                '</ul>' .
    1929                                          '<p>'
     1929                                        '<p>'
    19301930        ) );
    19311931
    19321932        // Help Sidebar
  • src/includes/admin/tools/help.php

     
    2929                'id'      => 'repair_forums',
    3030                'title'   => __( 'Repair Forums', 'bbpress' ),
    3131                'content' => '<p>' . __( 'There is more detailed information available on the bbPress and BuddyPress codex for the following:', 'bbpress' ) . '</p>' .
    32                                          '<p>' .
     32                                        '<p>' .
    3333                                                '<ul>' .
    3434                                                        '<li>' . __( 'BuddyPress Group Forums: <a href="https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/">Installing Group and Sitewide Forums</a> and <a href="https://codex.buddypress.org/getting-started/guides/migrating-from-old-forums-to-bbpress-2/">Migrating from old forums to bbPress 2.2+</a>.', 'bbpress' ) . '</li>' .
    3535                                                        '<li>' . __( 'bbPress roles: <a href="https://codex.bbpress.org/bbpress-user-roles-and-capabilities/" target="_blank">bbPress User Roles and Capabilities</a>',                                                                                                                                                                        'bbpress' ) . '</li>' .
     
    9494                'id'      => 'overview',
    9595                'title'   => __( 'Overview', 'bbpress' ),
    9696                'content' => '<p>' . __( 'This screen provides access to all of the bbPress Import Forums settings and resources.',                                      'bbpress' ) . '</p>' .
    97                                          '<p>' . __( 'Please see the additional help tabs for more information on each individual section.',                                         'bbpress' ) . '</p>' .
    98                                          '<p>' . __( 'Also see the main article on the bbPress codex <a href="https://codex.bbpress.org/import-forums/">bbPress: Import Forums</a>.', 'bbpress' ) . '</p>'
     97                                        '<p>' . __( 'Please see the additional help tabs for more information on each individual section.',                                         'bbpress' ) . '</p>' .
     98                                        '<p>' . __( 'Also see the main article on the bbPress codex <a href="https://codex.bbpress.org/import-forums/">bbPress: Import Forums</a>.', 'bbpress' ) . '</p>'
    9999        ) );
    100100
    101101        // Database Settings
     
    103103                'id'      => 'database_settings',
    104104                'title'   => __( 'Database Settings', 'bbpress' ),
    105105                'content' => '<p>' . __( 'In the Database Settings you have a number of options:', 'bbpress' ) . '</p>' .
    106                                          '<p>' .
     106                                        '<p>' .
    107107                                                '<ul>' .
    108108                                                        '<li>' . __( 'The settings in this section refer to the database connection strings used by your old forum software. The best way to determine the exact settings you need is to copy them from your legacy forums configuration file or contact your web hosting provider.', 'bbpress' ) . '</li>' .
    109109                                                '</ul>' .
     
    115115                'id'      => 'importer_options',
    116116                'title'   => __( 'Importer Options', 'bbpress' ),
    117117                'content' => '<p>' . __( 'In the Options you have a number of options:', 'bbpress' ) . '</p>' .
    118                                          '<p>' .
     118                                        '<p>' .
    119119                                                '<ul>' .
    120120                                                        '<li>' . __( 'Depending on your MySQL configuration you can tweak the "Rows Limit" and "Delay Time" that may help to improve the overall time it takes to perform a complete forum import.', 'bbpress' ) . '</li>' .
    121121                                                        '<li>' . __( '"Convert Users" will import your legacy forum members as WordPress Users.',                                                                                                    'bbpress' ) . '</li>' .
  • src/includes/common/formatting.php

     
    313313
    314314        // Bail on links that match the current domain
    315315        if ( preg_match( '%href=["\'](' . preg_quote( set_url_scheme( $home_url, 'http'  ) ) . ')%i', $text ) ||
    316                  preg_match( '%href=["\'](' . preg_quote( set_url_scheme( $home_url, 'https' ) ) . ')%i', $text )
     316                preg_match( '%href=["\'](' . preg_quote( set_url_scheme( $home_url, 'https' ) ) . ')%i', $text )
    317317        ) {
    318318                return "<a {$text}>";
    319319        }
  • src/includes/common/functions.php

     
    176176
    177177        // Is the post by an anonymous user?
    178178        if ( ( bbp_get_topic_post_type() === $data['post_type'] && ! bbp_is_topic_anonymous( $postarr['ID'] ) ) ||
    179                  ( bbp_get_reply_post_type() === $data['post_type'] && ! bbp_is_reply_anonymous( $postarr['ID'] ) ) ) {
     179                ( bbp_get_reply_post_type() === $data['post_type'] && ! bbp_is_reply_anonymous( $postarr['ID'] ) ) ) {
    180180                return $data;
    181181        }