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

    r4528 r5737  
    44        <div class="padder">
    55
    6         <?php do_action( 'bp_before_archive' ) ?>
     6        <?php do_action( 'bp_before_archive' ); ?>
    77
    88        <div class="page" id="blog-archives" role="main">
     
    1616                <?php while (have_posts()) : the_post(); ?>
    1717
    18                     <?php do_action( 'bp_before_blog_post' ) ?>
     18                    <?php do_action( 'bp_before_blog_post' ); ?>
    1919
    2020                    <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     
    2222                        <div class="author-box">
    2323                            <?php echo get_avatar( get_the_author_meta( 'user_email' ), '50' ); ?>
    24                             <p><?php printf( _x( 'by %s', 'Post written by...', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ) ?></p>
     24                            <p><?php printf( _x( 'by %s', 'Post written by...', 'buddypress' ), bp_core_get_userlink( $post->post_author ) ); ?></p>
    2525                        </div>
    2626
    2727                        <div class="post-content">
    28                             <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>
     28                            <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>
    2929
    3030                            <p class="date"><?php printf( __( '%1$s <span>in %2$s</span>', 'buddypress' ), get_the_date(), get_the_category_list( ', ' ) ); ?></p>
     
    4040                    </div>
    4141
    42                     <?php do_action( 'bp_after_blog_post' ) ?>
     42                    <?php do_action( 'bp_after_blog_post' ); ?>
    4343
    4444                <?php endwhile; ?>
     
    4848            <?php else : ?>
    4949
    50                 <h2 class="center"><?php _e( 'Not Found', 'buddypress' ) ?></h2>
    51                 <?php get_search_form() ?>
     50                <h2 class="center"><?php _e( 'Not Found', 'buddypress' ); ?></h2>
     51                <?php get_search_form(); ?>
    5252
    5353            <?php endif; ?>
     
    5555        </div>
    5656
    57         <?php do_action( 'bp_after_archive' ) ?>
     57        <?php do_action( 'bp_after_archive' ); ?>
    5858
    5959        </div><!-- .padder -->
    6060    </div><!-- #content -->
    6161
    62     <?php get_sidebar() ?>
     62    <?php get_sidebar(); ?>
    6363
    6464<?php get_footer(); ?>
Note: See TracChangeset for help on using the changeset viewer.