Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/12/2012 08:09:34 PM (15 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/forum.php

    r5184 r5737  
    1717
    1818                                <li>
    19                                         <a href="#post-new" class="show-hide-new"><?php _e( 'New Topic', 'buddypress' ) ?></a>
     19                                        <a href="#post-new" class="show-hide-new"><?php _e( 'New Topic', 'buddypress' ); ?></a>
    2020                                </li>
    2121
     
    2525
    2626                                <li>
    27                                         <a href="<?php bp_forums_directory_permalink() ?>"><?php _e( 'Forum Directory', 'buddypress') ?></a>
     27                                        <a href="<?php bp_forums_directory_permalink(); ?>"><?php _e( 'Forum Directory', 'buddypress'); ?></a>
    2828                                </li>
    2929
     
    4949        <div class="forums single-forum" role="main">
    5050
    51                 <?php locate_template( array( 'forums/forums-loop.php' ), true ) ?>
     51                <?php locate_template( array( 'forums/forums-loop.php' ), true ); ?>
    5252
    5353        </div><!-- .forums.single-forum -->
     
    5555<?php endif; ?>
    5656
    57 <?php do_action( 'bp_after_group_forum_content' ) ?>
     57<?php do_action( 'bp_after_group_forum_content' ); ?>
    5858
    5959<?php if ( !bp_is_group_forum_topic_edit() && !bp_is_group_forum_topic() ) : ?>
     
    6464                        <div id="new-topic-post">
    6565
    66                                 <?php do_action( 'bp_before_group_forum_post_new' ) ?>
     66                                <?php do_action( 'bp_before_group_forum_post_new' ); ?>
    6767
    6868                                <?php if ( bp_groups_auto_join() && !bp_group_is_member() ) : ?>
    69                                         <p><?php _e( 'You will auto join this group when you start a new topic.', 'buddypress' ) ?></p>
     69                                        <p><?php _e( 'You will auto join this group when you start a new topic.', 'buddypress' ); ?></p>
    7070                                <?php endif; ?>
    7171
    7272                                <p id="post-new"></p>
    73                                 <h4><?php _e( 'Post a New Topic:', 'buddypress' ) ?></h4>
     73                                <h4><?php _e( 'Post a New Topic:', 'buddypress' ); ?></h4>
    7474
    75                                 <label><?php _e( 'Title:', 'buddypress' ) ?></label>
     75                                <label><?php _e( 'Title:', 'buddypress' ); ?></label>
    7676                                <input type="text" name="topic_title" id="topic_title" value="" />
    7777
    78                                 <label><?php _e( 'Content:', 'buddypress' ) ?></label>
     78                                <label><?php _e( 'Content:', 'buddypress' ); ?></label>
    7979                                <textarea name="topic_text" id="topic_text"></textarea>
    8080
    81                                 <label><?php _e( 'Tags (comma separated):', 'buddypress' ) ?></label>
     81                                <label><?php _e( 'Tags (comma separated):', 'buddypress' ); ?></label>
    8282                                <input type="text" name="topic_tags" id="topic_tags" value="" />
    8383
    84                                 <?php do_action( 'bp_after_group_forum_post_new' ) ?>
     84                                <?php do_action( 'bp_after_group_forum_post_new' ); ?>
    8585
    8686                                <div class="submit">
    87                                         <input type="submit" name="submit_topic" id="submit" value="<?php _e( 'Post Topic', 'buddypress' ) ?>" />
     87                                        <input type="submit" name="submit_topic" id="submit" value="<?php _e( 'Post Topic', 'buddypress' ); ?>" />
    8888                                </div>
    8989
    90                                 <?php wp_nonce_field( 'bp_forums_new_topic' ) ?>
     90                                <?php wp_nonce_field( 'bp_forums_new_topic' ); ?>
    9191                        </div><!-- #new-topic-post -->
    9292                </form><!-- #forum-topic-form -->
Note: See TracChangeset for help on using the changeset viewer.