Changeset 3899
- Timestamp:
- 09/01/2016 02:10:22 AM (9 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress
- Files:
-
- 2 edited
-
content-single-view.php (modified) (2 diffs)
-
form-topic.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/content-single-view.php
r1521 r3899 12 12 <div id="bbpress-forums"> 13 13 14 <?php do_action( 'wporg_compat_before_single_view' ); ?> 15 14 16 <?php bbp_breadcrumb(); ?> 15 17 16 <?php bbp_set_query_name( 'bbp_view'); ?>18 <?php bbp_set_query_name( bbp_get_view_rewrite_id() ); ?> 17 19 18 20 <?php if ( bbp_view_query() ) : ?> … … 30 32 <?php endif; ?> 31 33 34 <?php do_action( 'wporg_compat_after_single_view' ); ?> 35 32 36 <?php bbp_reset_query_name(); ?> 33 37 -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-forums/bbpress/form-topic.php
r3740 r3899 1 <?php if ( ! bbp_is_single_forum() ) : ?>1 <?php if ( ! bbp_is_single_forum() && ! bbp_is_single_view() ) : ?> 2 2 3 3 <div id="bbpress-forums"> … … 99 99 <?php do_action( 'bbp_theme_after_topic_form_tags' ); ?> 100 100 101 <?php if ( ! bbp_is_single_forum() ) : ?>101 <?php if ( ! bbp_is_single_forum() && ! bbp_is_single_view() ) : ?> 102 102 103 103 <?php do_action( 'bbp_theme_before_topic_form_forum' ); ?> … … 214 214 <?php endif; ?> 215 215 216 <?php if ( ! bbp_is_single_forum() ) : ?>216 <?php if ( ! bbp_is_single_forum() && ! bbp_is_single_view() ) : ?> 217 217 218 218 </div>
Note: See TracChangeset
for help on using the changeset viewer.