Skip to:
Content

bbPress.org

Ticket #3294: trac-3294-phpcs-fix-controlstructures-without-braces.patch

File trac-3294-phpcs-fix-controlstructures-without-braces.patch, 1.8 KB (added by jrf, 5 years ago)

Fixes all remaining violations against the Generic.ControlStructures.InlineControlStructure.NotAllowed error code

  • src/templates/default/bbpress/content-single-user.php

     
    2323                <?php bbp_get_template_part( 'user', 'details' ); ?>
    2424
    2525                <div id="bbp-user-body">
    26                         <?php if ( bbp_is_favorites()               ) bbp_get_template_part( 'user', 'favorites'       ); ?>
    27                         <?php if ( bbp_is_subscriptions()           ) bbp_get_template_part( 'user', 'subscriptions'   ); ?>
    28                         <?php if ( bbp_is_single_user_engagements() ) bbp_get_template_part( 'user', 'engagements'     ); ?>
    29                         <?php if ( bbp_is_single_user_topics()      ) bbp_get_template_part( 'user', 'topics-created'  ); ?>
    30                         <?php if ( bbp_is_single_user_replies()     ) bbp_get_template_part( 'user', 'replies-created' ); ?>
    31                         <?php if ( bbp_is_single_user_edit()        ) bbp_get_template_part( 'form', 'user-edit'       ); ?>
    32                         <?php if ( bbp_is_single_user_profile()     ) bbp_get_template_part( 'user', 'profile'         ); ?>
     26                        <?php
     27                        if ( bbp_is_favorites() ) {
     28                                bbp_get_template_part( 'user', 'favorites' );
     29                        }
     30
     31                        if ( bbp_is_subscriptions() ) {
     32                                bbp_get_template_part( 'user', 'subscriptions' );
     33                        }
     34
     35                        if ( bbp_is_single_user_engagements() ) {
     36                                bbp_get_template_part( 'user', 'engagements' );
     37                        }
     38
     39                        if ( bbp_is_single_user_topics() ) {
     40                                bbp_get_template_part( 'user', 'topics-created' );
     41                        }
     42
     43                        if ( bbp_is_single_user_replies() ) {
     44                                bbp_get_template_part( 'user', 'replies-created' );
     45                        }
     46
     47                        if ( bbp_is_single_user_edit() ) {
     48                                bbp_get_template_part( 'form', 'user-edit' );
     49                        }
     50
     51                        if ( bbp_is_single_user_profile() ) {
     52                                bbp_get_template_part( 'user', 'profile' );
     53                        }
     54                        ?>
    3355                </div>
    3456        </div>
    3557