Changeset 3928
- Timestamp:
- 01/25/2011 10:53:11 PM (15 years ago)
- Location:
- trunk/bp-themes/bp-default
- Files:
-
- 3 edited
-
_inc/global.js (modified) (1 diff)
-
groups/single/forum.php (modified) (1 diff)
-
groups/single/forum/topic.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/_inc/global.js
r3812 r3928 589 589 590 590 /* Hit the "New Topic" button on the forums directory page */ 591 jq('a #new-topic-button').click( function() {591 jq('a.show-hide-new').click( function() { 592 592 if ( !jq('div#new-topic-post').length ) 593 593 return false; -
trunk/bp-themes/bp-default/groups/single/forum.php
r3899 r3928 11 11 else : ?> 12 12 13 <div class="item-list-tabs " id="subnav" role="navigation">13 <div class="item-list-tabs no-ajax" id="subnav" role="navigation"> 14 14 <ul> 15 16 <li> 17 <a href="#post-new" class="show-hide-new">↓ <?php _e( 'New Topic', 'buddypress' ) ?></a> 18 </li> 19 20 <?php if ( !bp_forum_directory_is_disabled() ) : ?> 21 22 <li> 23 <a href="<?php bp_forum_directory_permalink() ?>"><?php _e( 'Forum Directory', 'buddypress') ?></a> 24 </li> 25 26 <?php endif; ?> 15 27 16 28 <?php do_action( 'bp_forums_directory_group_sub_types' ); ?> -
trunk/bp-themes/bp-default/groups/single/forum/topic.php
r3912 r3928 5 5 <form action="<?php bp_forum_topic_action() ?>" method="post" id="forum-topic-form" class="standard-form"> 6 6 7 <div class="item-list-tabs " id="subnav" role="navigation">7 <div class="item-list-tabs no-ajax" id="subnav" role="navigation"> 8 8 <ul> 9 9 <li> 10 <a href="#post-topic-reply" >↓ <?php _e( 'Reply', 'buddypress' ) ?></a>10 <a href="#post-topic-reply" class="show-hide-new">↓ <?php _e( 'New Reply', 'buddypress' ) ?></a> 11 11 </li> 12 12
Note: See TracChangeset
for help on using the changeset viewer.