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/attachment.php

    r4529 r5737  
    1010                <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    1111
    12                     <?php do_action( 'bp_before_blog_post' ) ?>
     12                    <?php do_action( 'bp_before_blog_post' ); ?>
    1313
    1414                    <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     
    2020
    2121                        <div class="post-content">
    22                             <h2 class="posttitle"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'buddypress' ) ?> <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
     22                            <h2 class="posttitle"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php _e( 'Permanent Link to', 'buddypress' ); ?> <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
    2323
    2424                            <p class="date">
     
    5454                    </div>
    5555
    56                     <?php do_action( 'bp_after_blog_post' ) ?>
     56                    <?php do_action( 'bp_after_blog_post' ); ?>
    5757
    5858                    <?php comments_template(); ?>
     
    6060                <?php endwhile; else: ?>
    6161
    62                     <p><?php _e( 'Sorry, no attachments matched your criteria.', 'buddypress' ) ?></p>
     62                    <p><?php _e( 'Sorry, no attachments matched your criteria.', 'buddypress' ); ?></p>
    6363
    6464                <?php endif; ?>
     
    6666            </div>
    6767
    68         <?php do_action( 'bp_after_attachment' ) ?>
     68        <?php do_action( 'bp_after_attachment' ); ?>
    6969
    7070        </div><!-- .padder -->
Note: See TracChangeset for help on using the changeset viewer.