Changeset 4960 for trunk/templates/default/bbpress/form-reply.php
- Timestamp:
- 05/28/2013 04:12:53 PM (13 years ago)
- File:
-
- 1 edited
-
trunk/templates/default/bbpress/form-reply.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/templates/default/bbpress/form-reply.php
r4944 r4960 55 55 <?php do_action( 'bbp_theme_before_reply_form_content' ); ?> 56 56 57 <?php if ( !function_exists( 'wp_editor' ) ) : ?> 58 59 <p> 60 <label for="bbp_reply_content"><?php _e( 'Reply:', 'bbpress' ); ?></label><br /> 61 <textarea id="bbp_reply_content" tabindex="<?php bbp_tab_index(); ?>" name="bbp_reply_content" rows="6"><?php bbp_form_reply_content(); ?></textarea> 62 </p> 63 64 <?php else : ?> 65 66 <?php bbp_the_content( array( 'context' => 'reply' ) ); ?> 67 68 <?php endif; ?> 57 <?php bbp_the_content( array( 'context' => 'reply' ) ); ?> 69 58 70 59 <?php do_action( 'bbp_theme_after_reply_form_content' ); ?> 71 60 72 <?php if ( ! current_user_can( 'unfiltered_html') ) : ?>61 <?php if ( ! ( bbp_use_wp_editor() || current_user_can( 'unfiltered_html' ) ) ) : ?> 73 62 74 63 <p class="form-allowed-tags">
Note: See TracChangeset
for help on using the changeset viewer.