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

    r4961 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_home' ) ?>
     6        <?php do_action( 'bp_before_blog_home' ); ?>
    77
    8         <?php do_action( 'template_notices' ) ?>
     8        <?php do_action( 'template_notices' ); ?>
    99
    1010        <div class="page" id="blog-latest" 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
    2626                            <?php if ( is_sticky() ) : ?>
     
    3030
    3131                        <div class="post-content">
    32                             <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>
     32                            <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>
    3333
    3434                            <p class="date"><?php printf( __( '%1$s <span>in %2$s</span>', 'buddypress' ), get_the_date(), get_the_category_list( ', ' ) ); ?></p>
     
    4444                    </div>
    4545
    46                     <?php do_action( 'bp_after_blog_post' ) ?>
     46                    <?php do_action( 'bp_after_blog_post' ); ?>
    4747
    4848                <?php endwhile; ?>
     
    5252            <?php else : ?>
    5353
    54                 <h2 class="center"><?php _e( 'Not Found', 'buddypress' ) ?></h2>
    55                 <p class="center"><?php _e( 'Sorry, but you are looking for something that isn\'t here.', 'buddypress' ) ?></p>
     54                <h2 class="center"><?php _e( 'Not Found', 'buddypress' ); ?></h2>
     55                <p class="center"><?php _e( 'Sorry, but you are looking for something that isn\'t here.', 'buddypress' ); ?></p>
    5656
    57                 <?php get_search_form() ?>
     57                <?php get_search_form(); ?>
    5858
    5959            <?php endif; ?>
    6060        </div>
    6161
    62         <?php do_action( 'bp_after_blog_home' ) ?>
     62        <?php do_action( 'bp_after_blog_home' ); ?>
    6363
    6464        </div><!-- .padder -->
    6565    </div><!-- #content -->
    6666
    67     <?php get_sidebar() ?>
     67    <?php get_sidebar(); ?>
    6868
    69 <?php get_footer() ?>
     69<?php get_footer(); ?>
Note: See TracChangeset for help on using the changeset viewer.