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/groups/single/plugins.php

    r5077 r5737  
    1 <?php get_header( 'buddypress' ) ?>
     1<?php get_header( 'buddypress' ); ?>
    22
    33    <div id="content">
     
    55            <?php if ( bp_has_groups() ) : while ( bp_groups() ) : bp_the_group(); ?>
    66
    7             <?php do_action( 'bp_before_group_plugin_template' ) ?>
     7            <?php do_action( 'bp_before_group_plugin_template' ); ?>
    88
    99            <div id="item-header">
    10                 <?php locate_template( array( 'groups/single/group-header.php' ), true ) ?>
     10                <?php locate_template( array( 'groups/single/group-header.php' ), true ); ?>
    1111            </div><!-- #item-header -->
    1212
     
    1414                <div class="item-list-tabs no-ajax" id="object-nav" role="navigation">
    1515                    <ul>
    16                         <?php bp_get_options_nav() ?>
     16                        <?php bp_get_options_nav(); ?>
    1717
    18                         <?php do_action( 'bp_group_plugin_options_nav' ) ?>
     18                        <?php do_action( 'bp_group_plugin_options_nav' ); ?>
    1919                    </ul>
    2020                </div>
     
    2323            <div id="item-body">
    2424
    25                 <?php do_action( 'bp_before_group_body' ) ?>
     25                <?php do_action( 'bp_before_group_body' ); ?>
    2626
    27                 <?php do_action( 'bp_template_content' ) ?>
     27                <?php do_action( 'bp_template_content' ); ?>
    2828
    29                 <?php do_action( 'bp_after_group_body' ) ?>
     29                <?php do_action( 'bp_after_group_body' ); ?>
    3030            </div><!-- #item-body -->
    3131
    32             <?php do_action( 'bp_after_group_plugin_template' ) ?>
     32            <?php do_action( 'bp_after_group_plugin_template' ); ?>
    3333
    3434            <?php endwhile; endif; ?>
     
    3737    </div><!-- #content -->
    3838
    39     <?php get_sidebar( 'buddypress' ) ?>
     39    <?php get_sidebar( 'buddypress' ); ?>
    4040
    41 <?php get_footer( 'buddypress' ) ?>
     41<?php get_footer( 'buddypress' ); ?>
Note: See TracChangeset for help on using the changeset viewer.