Make WordPress Core


Ignore:
Timestamp:
11/18/2013 11:11:01 PM (11 years ago)
Author:
lancewillett
Message:

Twenty Fourteen: updates all PHP files to meet new brace style in WP coding standards. Props rickalee for initial patch, fixes #26093.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/page-templates/full-width.php

    r26105 r26260  
    1313
    1414<?php
    15     if ( is_front_page() && twentyfourteen_has_featured_posts() )
     15    if ( is_front_page() && twentyfourteen_has_featured_posts() ) {
    1616        get_template_part( 'featured-content' );
     17    }
    1718?>
    1819
     
    2627
    2728                    // If comments are open or we have at least one comment, load up the comment template.
    28                     if ( comments_open() || get_comments_number() )
     29                    if ( comments_open() || get_comments_number() ) {
    2930                        comments_template();
     31                    }
    3032                endwhile;
    3133            ?>
Note: See TracChangeset for help on using the changeset viewer.