Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/12/2012 08:09:34 PM (13 years ago)
Author:
johnjamesjacoby
Message:

Add ending semicolons to bp-default where omitted. Fixes #4002.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-themes/bp-default/single.php

    r4529 r5737  
    1 <?php get_header() ?>
     1<?php get_header(); ?>
    22
    33    <div id="content">
    44        <div class="padder">
    55
    6             <?php do_action( 'bp_before_blog_single_post' ) ?>
     6            <?php do_action( 'bp_before_blog_single_post' ); ?>
    77
    88            <div class="page" id="blog-single" role="main">
     
    4343            <?php endwhile; else: ?>
    4444
    45                 <p><?php _e( 'Sorry, no posts matched your criteria.', 'buddypress' ) ?></p>
     45                <p><?php _e( 'Sorry, no posts matched your criteria.', 'buddypress' ); ?></p>
    4646
    4747            <?php endif; ?>
     
    4949        </div>
    5050
    51         <?php do_action( 'bp_after_blog_single_post' ) ?>
     51        <?php do_action( 'bp_after_blog_single_post' ); ?>
    5252
    5353        </div><!-- .padder -->
    5454    </div><!-- #content -->
    5555
    56     <?php get_sidebar() ?>
     56    <?php get_sidebar(); ?>
    5757
    58 <?php get_footer() ?>
     58<?php get_footer(); ?>
Note: See TracChangeset for help on using the changeset viewer.