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/forum/topic.php

    r5388 r5737  
    11<?php do_action( 'bp_before_group_forum_topic' ); ?>
    22
    3 <form action="<?php bp_forum_topic_action() ?>" method="post" id="forum-topic-form" class="standard-form">
     3<form action="<?php bp_forum_topic_action(); ?>" method="post" id="forum-topic-form" class="standard-form">
    44    <div class="item-list-tabs no-ajax" id="subnav" role="navigation">
    55        <ul>
     
    77   
    88                <li>
    9                     <a href="<?php bp_forum_topic_new_reply_link() ?>" class="new-reply-link"><?php _e( 'New Reply', 'buddypress' ) ?></a>
     9                    <a href="<?php bp_forum_topic_new_reply_link(); ?>" class="new-reply-link"><?php _e( 'New Reply', 'buddypress' ); ?></a>
    1010                </li>
    1111   
     
    1515   
    1616                <li>
    17                     <a href="<?php bp_forums_directory_permalink() ?>"><?php _e( 'Forum Directory', 'buddypress') ?></a>
     17                    <a href="<?php bp_forums_directory_permalink(); ?>"><?php _e( 'Forum Directory', 'buddypress'); ?></a>
    1818                </li>
    1919   
     
    2424   
    2525    <div id="topic-meta">
    26         <h3><?php bp_the_topic_title() ?> (<?php bp_the_topic_total_post_count() ?>)</h3>
     26        <h3><?php bp_the_topic_title(); ?> (<?php bp_the_topic_total_post_count(); ?>)</h3>
    2727   
    2828        <?php if ( bp_forum_topic_has_tags() ) : ?>
     
    3030            <div class="topic-tags">
    3131   
    32                 <?php _e( 'Topic tags:', 'buddypress' ) ?> <?php bp_forum_topic_tag_list() ?>
     32                <?php _e( 'Topic tags:', 'buddypress' ); ?> <?php bp_forum_topic_tag_list(); ?>
    3333   
    3434            </div>
     
    4040            <div class="last admin-links">
    4141   
    42                 <?php bp_the_topic_admin_links() ?>
     42                <?php bp_the_topic_admin_links(); ?>
    4343   
    4444            </div>
     
    5757            <div id="post-count-top" class="pag-count">
    5858
    59                 <?php bp_the_topic_pagination_count() ?>
     59                <?php bp_the_topic_pagination_count(); ?>
    6060
    6161            </div>
     
    6363            <div class="pagination-links" id="topic-pag-top">
    6464
    65                 <?php bp_the_topic_pagination() ?>
     65                <?php bp_the_topic_pagination(); ?>
    6666
    6767            </div>
     
    6969        </div>
    7070
    71         <?php do_action( 'bp_before_group_forum_topic_posts' ) ?>
     71        <?php do_action( 'bp_before_group_forum_topic_posts' ); ?>
    7272
    7373        <ul id="topic-post-list" class="item-list" role="main">
    7474            <?php while ( bp_forum_topic_posts() ) : bp_the_forum_topic_post(); ?>
    7575
    76                 <li id="post-<?php bp_the_topic_post_id() ?>" class="<?php bp_the_topic_post_css_class() ?>">
     76                <li id="post-<?php bp_the_topic_post_id(); ?>" class="<?php bp_the_topic_post_css_class(); ?>">
    7777                    <div class="poster-meta">
    78                         <a href="<?php bp_the_topic_post_poster_link() ?>">
    79                             <?php bp_the_topic_post_poster_avatar( 'width=40&height=40' ) ?>
     78                        <a href="<?php bp_the_topic_post_poster_link(); ?>">
     79                            <?php bp_the_topic_post_poster_avatar( 'width=40&height=40' ); ?>
    8080                        </a>
    81                         <?php echo sprintf( __( '%1$s said %2$s:', 'buddypress' ), bp_get_the_topic_post_poster_name(), bp_get_the_topic_post_time_since() ) ?>
     81                        <?php echo sprintf( __( '%1$s said %2$s:', 'buddypress' ), bp_get_the_topic_post_poster_name(), bp_get_the_topic_post_time_since() ); ?>
    8282                    </div>
    8383
    8484                    <div class="post-content">
    85                         <?php bp_the_topic_post_content() ?>
     85                        <?php bp_the_topic_post_content(); ?>
    8686                    </div>
    8787
    8888                    <div class="admin-links">
    8989                        <?php if ( bp_group_is_admin() || bp_group_is_mod() || bp_get_the_topic_post_is_mine() ) : ?>
    90                             <?php bp_the_topic_post_admin_links() ?>
     90                            <?php bp_the_topic_post_admin_links(); ?>
    9191                        <?php endif; ?>
    9292
    9393                        <?php do_action( 'bp_group_forum_post_meta' ); ?>
    9494
    95                         <a href="#post-<?php bp_the_topic_post_id() ?>" title="<?php _e( 'Permanent link to this post', 'buddypress' ) ?>">#</a>
     95                        <a href="#post-<?php bp_the_topic_post_id(); ?>" title="<?php _e( 'Permanent link to this post', 'buddypress' ); ?>">#</a>
    9696                    </div>
    9797                </li>
     
    100100        </ul><!-- #topic-post-list -->
    101101
    102         <?php do_action( 'bp_after_group_forum_topic_posts' ) ?>
     102        <?php do_action( 'bp_after_group_forum_topic_posts' ); ?>
    103103
    104104        <div class="pagination no-ajax">
    105105
    106106            <div id="post-count-bottom" class="pag-count">
    107                 <?php bp_the_topic_pagination_count() ?>
     107                <?php bp_the_topic_pagination_count(); ?>
    108108            </div>
    109109
    110110            <div class="pagination-links" id="topic-pag-bottom">
    111                 <?php bp_the_topic_pagination() ?>
     111                <?php bp_the_topic_pagination(); ?>
    112112            </div>
    113113
     
    117117   
    118118        <div id="message" class="info">
    119             <p><?php _e( 'There are no posts for this topic.', 'buddypress' ) ?></p>
     119            <p><?php _e( 'There are no posts for this topic.', 'buddypress' ); ?></p>
    120120        </div>
    121121   
     
    132132
    133133                    <?php if ( bp_groups_auto_join() && !bp_group_is_member() ) : ?>
    134                         <p><?php _e( 'You will auto join this group when you reply to this topic.', 'buddypress' ) ?></p>
     134                        <p><?php _e( 'You will auto join this group when you reply to this topic.', 'buddypress' ); ?></p>
    135135                    <?php endif; ?>
    136136
    137                     <?php do_action( 'groups_forum_new_reply_before' ) ?>
     137                    <?php do_action( 'groups_forum_new_reply_before' ); ?>
    138138
    139                     <h4><?php _e( 'Add a reply:', 'buddypress' ) ?></h4>
     139                    <h4><?php _e( 'Add a reply:', 'buddypress' ); ?></h4>
    140140
    141141                    <textarea name="reply_text" id="reply_text"></textarea>
    142142
    143143                    <div class="submit">
    144                         <input type="submit" name="submit_reply" id="submit" value="<?php _e( 'Post Reply', 'buddypress' ) ?>" />
     144                        <input type="submit" name="submit_reply" id="submit" value="<?php _e( 'Post Reply', 'buddypress' ); ?>" />
    145145                    </div>
    146146
    147                     <?php do_action( 'groups_forum_new_reply_after' ) ?>
     147                    <?php do_action( 'groups_forum_new_reply_after' ); ?>
    148148
    149                     <?php wp_nonce_field( 'bp_forums_new_reply' ) ?>
     149                    <?php wp_nonce_field( 'bp_forums_new_reply' ); ?>
    150150                </div>
    151151
     
    153153
    154154                <div id="message" class="info">
    155                     <p><?php _e( 'This topic is closed, replies are no longer accepted.', 'buddypress' ) ?></p>
     155                    <p><?php _e( 'This topic is closed, replies are no longer accepted.', 'buddypress' ); ?></p>
    156156                </div>
    157157
     
    164164</form><!-- #forum-topic-form -->
    165165
    166 <?php do_action( 'bp_after_group_forum_topic' ) ?>
     166<?php do_action( 'bp_after_group_forum_topic' ); ?>
Note: See TracChangeset for help on using the changeset viewer.