Changeset 5737 for trunk/bp-themes/bp-default/groups/single/forum.php
- Timestamp:
- 02/12/2012 08:09:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/groups/single/forum.php
r5184 r5737 17 17 18 18 <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> 20 20 </li> 21 21 … … 25 25 26 26 <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> 28 28 </li> 29 29 … … 49 49 <div class="forums single-forum" role="main"> 50 50 51 <?php locate_template( array( 'forums/forums-loop.php' ), true ) ?>51 <?php locate_template( array( 'forums/forums-loop.php' ), true ); ?> 52 52 53 53 </div><!-- .forums.single-forum --> … … 55 55 <?php endif; ?> 56 56 57 <?php do_action( 'bp_after_group_forum_content' ) ?>57 <?php do_action( 'bp_after_group_forum_content' ); ?> 58 58 59 59 <?php if ( !bp_is_group_forum_topic_edit() && !bp_is_group_forum_topic() ) : ?> … … 64 64 <div id="new-topic-post"> 65 65 66 <?php do_action( 'bp_before_group_forum_post_new' ) ?>66 <?php do_action( 'bp_before_group_forum_post_new' ); ?> 67 67 68 68 <?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> 70 70 <?php endif; ?> 71 71 72 72 <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> 74 74 75 <label><?php _e( 'Title:', 'buddypress' ) ?></label>75 <label><?php _e( 'Title:', 'buddypress' ); ?></label> 76 76 <input type="text" name="topic_title" id="topic_title" value="" /> 77 77 78 <label><?php _e( 'Content:', 'buddypress' ) ?></label>78 <label><?php _e( 'Content:', 'buddypress' ); ?></label> 79 79 <textarea name="topic_text" id="topic_text"></textarea> 80 80 81 <label><?php _e( 'Tags (comma separated):', 'buddypress' ) ?></label>81 <label><?php _e( 'Tags (comma separated):', 'buddypress' ); ?></label> 82 82 <input type="text" name="topic_tags" id="topic_tags" value="" /> 83 83 84 <?php do_action( 'bp_after_group_forum_post_new' ) ?>84 <?php do_action( 'bp_after_group_forum_post_new' ); ?> 85 85 86 86 <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' ); ?>" /> 88 88 </div> 89 89 90 <?php wp_nonce_field( 'bp_forums_new_topic' ) ?>90 <?php wp_nonce_field( 'bp_forums_new_topic' ); ?> 91 91 </div><!-- #new-topic-post --> 92 92 </form><!-- #forum-topic-form -->
Note: See TracChangeset
for help on using the changeset viewer.