Changeset 7260
- Timestamp:
- 06/23/2024 09:36:26 PM (20 months ago)
- Location:
- branches/2.6/src/templates/default/bbpress
- Files:
-
- 1 added
- 3 edited
-
form-allowed-tags.php (added)
-
form-forum.php (modified) (1 diff)
-
form-reply.php (modified) (1 diff)
-
form-topic.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.6/src/templates/default/bbpress/form-forum.php
r6806 r7260 85 85 <?php do_action( 'bbp_theme_after_forum_form_content' ); ?> 86 86 87 <?php if ( ! ( bbp_use_wp_editor() || current_user_can( 'unfiltered_html' ) ) ) : ?> 88 89 <p class="form-allowed-tags"> 90 <label><?php esc_html_e( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes:','bbpress' ); ?></label><br /> 91 <code><?php bbp_allowed_tags(); ?></code> 92 </p> 93 94 <?php endif; ?> 87 <?php bbp_get_template_part( 'form', 'allowed-tags' ); ?> 95 88 96 89 <?php if ( bbp_allow_forum_mods() && current_user_can( 'assign_moderators' ) ) : ?> -
branches/2.6/src/templates/default/bbpress/form-reply.php
r6806 r7260 74 74 <?php do_action( 'bbp_theme_after_reply_form_content' ); ?> 75 75 76 <?php if ( ! ( bbp_use_wp_editor() || current_user_can( 'unfiltered_html' ) ) ) : ?> 77 78 <p class="form-allowed-tags"> 79 <label><?php esc_html_e( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes:','bbpress' ); ?></label><br /> 80 <code><?php bbp_allowed_tags(); ?></code> 81 </p> 82 83 <?php endif; ?> 76 <?php bbp_get_template_part( 'form', 'allowed-tags' ); ?> 84 77 85 78 <?php if ( bbp_allow_topic_tags() && current_user_can( 'assign_topic_tags', bbp_get_topic_id() ) ) : ?> -
branches/2.6/src/templates/default/bbpress/form-topic.php
r6806 r7260 95 95 <?php do_action( 'bbp_theme_after_topic_form_content' ); ?> 96 96 97 <?php if ( ! ( bbp_use_wp_editor() || current_user_can( 'unfiltered_html' ) ) ) : ?> 98 99 <p class="form-allowed-tags"> 100 <label><?php printf( esc_html__( 'You may use these %s tags and attributes:', 'bbpress' ), '<abbr title="HyperText Markup Language">HTML</abbr>' ); ?></label><br /> 101 <code><?php bbp_allowed_tags(); ?></code> 102 </p> 103 104 <?php endif; ?> 97 <?php bbp_get_template_part( 'form', 'allowed-tags' ); ?> 105 98 106 99 <?php if ( bbp_allow_topic_tags() && current_user_can( 'assign_topic_tags', bbp_get_topic_id() ) ) : ?>
Note: See TracChangeset
for help on using the changeset viewer.