Make WordPress Core

Changeset 51553


Ignore:
Timestamp:
08/05/2021 01:24:57 PM (3 years ago)
Author:
SergeyBiryukov
Message:

Bundled Themes: Remove redundant semicolons after closing curly brackets.

Includes a few minor indentation fixes.

Props jrf.
See #53359.

Location:
trunk/src/wp-content/themes
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyseventeen/template-parts/post/content-audio.php

    r46827 r51553  
    2828                echo twentyseventeen_time_link();
    2929                twentyseventeen_edit_link();
    30             };
    31                 echo '</div><!-- .entry-meta -->';
    32         };
     30            }
     31            echo '</div><!-- .entry-meta -->';
     32        }
    3333
    3434        if ( is_single() ) {
     
    7373                    echo '</div><!-- .entry-audio -->';
    7474                }
    75             };
    76 
    77         };
     75            }
     76        }
    7877
    7978        if ( is_single() || empty( $audio ) ) {
     
    9594                )
    9695            );
    97 
    98         };
     96        }
    9997        ?>
    10098
  • trunk/src/wp-content/themes/twentyseventeen/template-parts/post/content-gallery.php

    r46827 r51553  
    2828                echo twentyseventeen_time_link();
    2929                twentyseventeen_edit_link();
    30             };
     30            }
    3131            echo '</div><!-- .entry-meta -->';
    32         };
     32        }
    3333
    3434        if ( is_single() ) {
     
    6060                    echo get_post_gallery();
    6161                echo '</div>';
    62             };
    63 
    64         };
     62            }
     63        }
    6564
    6665        if ( is_single() || ! get_post_gallery() ) {
     
    8281                )
    8382            );
    84 
    85         };
     83        }
    8684        ?>
    8785
  • trunk/src/wp-content/themes/twentyseventeen/template-parts/post/content-image.php

    r46827 r51553  
    2828                echo twentyseventeen_time_link();
    2929                twentyseventeen_edit_link();
    30             };
    31                 echo '</div><!-- .entry-meta -->';
    32         };
     30            }
     31            echo '</div><!-- .entry-meta -->';
     32        }
    3333
    3434        if ( is_single() ) {
     
    7373            );
    7474
    75         };
     75        }
    7676        ?>
    7777
  • trunk/src/wp-content/themes/twentyseventeen/template-parts/post/content-video.php

    r46827 r51553  
    2929                twentyseventeen_edit_link();
    3030            }
    31                 echo '</div><!-- .entry-meta -->';
    32         };
     31            echo '</div><!-- .entry-meta -->';
     32        }
    3333
    3434        if ( is_single() ) {
     
    7272                    echo '</div>';
    7373                }
    74             };
    75 
    76         };
     74            }
     75        }
    7776
    7877        if ( is_single() || empty( $video ) ) {
     
    9493                )
    9594            );
    96         };
     95        }
    9796        ?>
    9897
  • trunk/src/wp-content/themes/twentyseventeen/template-parts/post/content.php

    r46827 r51553  
    2828                echo twentyseventeen_time_link();
    2929                twentyseventeen_edit_link();
    30             };
     30            }
    3131            echo '</div><!-- .entry-meta -->';
    32         };
     32        }
    3333
    3434        if ( is_single() ) {
  • trunk/src/wp-content/themes/twentyten/loop-attachment.php

    r49840 r51553  
    180180
    181181<?php endwhile;
    182 }; // End of the loop. ?>
     182} // End of the loop. ?>
  • trunk/src/wp-content/themes/twentyten/loop-page.php

    r47122 r51553  
    4646
    4747<?php endwhile;
    48 }; // End of the loop. ?>
     48} // End of the loop. ?>
  • trunk/src/wp-content/themes/twentyten/loop-single.php

    r47122 r51553  
    8989
    9090    <?php endwhile;
    91 }; // End of the loop. ?>
     91} // End of the loop. ?>
  • trunk/src/wp-content/themes/twentytwentyone/comments.php

    r50233 r51553  
    2929    <?php
    3030    if ( have_comments() ) :
    31         ;
    3231        ?>
    3332        <h2 class="comments-title">
Note: See TracChangeset for help on using the changeset viewer.