Changeset 4960
- Timestamp:
- 05/28/2013 04:12:53 PM (12 years ago)
- Location:
- trunk/templates/default/bbpress
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/templates/default/bbpress/form-forum.php
r4733 r4960 73 73 <?php do_action( 'bbp_theme_before_forum_form_content' ); ?> 74 74 75 <?php if ( !function_exists( 'wp_editor' ) ) : ?> 76 77 <p> 78 <label for="bbp_forum_content"><?php _e( 'Forum Description:', 'bbpress' ); ?></label><br /> 79 <textarea id="bbp_forum_content" tabindex="<?php bbp_tab_index(); ?>" name="bbp_forum_content" cols="60" rows="10"><?php bbp_form_forum_content(); ?></textarea> 80 </p> 81 82 <?php else : ?> 83 84 <?php bbp_the_content( array( 'context' => 'forum' ) ); ?> 85 86 <?php endif; ?> 75 <?php bbp_the_content( array( 'context' => 'forum' ) ); ?> 87 76 88 77 <?php do_action( 'bbp_theme_after_forum_form_content' ); ?> 89 78 90 <?php if ( ! current_user_can( 'unfiltered_html') ) : ?>79 <?php if ( ! ( bbp_use_wp_editor() || current_user_can( 'unfiltered_html' ) ) ) : ?> 91 80 92 81 <p class="form-allowed-tags"> -
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"> -
trunk/templates/default/bbpress/form-topic.php
r4823 r4960 81 81 <?php do_action( 'bbp_theme_before_topic_form_content' ); ?> 82 82 83 <?php if ( !function_exists( 'wp_editor' ) ) : ?> 84 85 <p> 86 <label for="bbp_topic_content"><?php _e( 'Topic:', 'bbpress' ); ?></label><br /> 87 <textarea id="bbp_topic_content" tabindex="<?php bbp_tab_index(); ?>" name="bbp_topic_content" cols="60" rows="6"><?php bbp_form_topic_content(); ?></textarea> 88 </p> 89 90 <?php else : ?> 91 92 <?php bbp_the_content( array( 'context' => 'topic' ) ); ?> 93 94 <?php endif; ?> 83 <?php bbp_the_content( array( 'context' => 'topic' ) ); ?> 95 84 96 85 <?php do_action( 'bbp_theme_after_topic_form_content' ); ?> 97 86 98 <?php if ( ! current_user_can( 'unfiltered_html') ) : ?>87 <?php if ( ! ( bbp_use_wp_editor() || current_user_can( 'unfiltered_html' ) ) ) : ?> 99 88 100 89 <p class="form-allowed-tags">
Note: See TracChangeset
for help on using the changeset viewer.