Changeset 5044 for sites/trunk/buddypress.org/public_html/wp-content/themes/bbpress-org/bbpress/form-topic.php
- Timestamp:
- 03/02/2017 04:31:33 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/buddypress.org/public_html/wp-content/themes/bbpress-org/bbpress/form-topic.php
r1264 r5044 64 64 <p> 65 65 <label for="bbp_topic_title"><?php printf( __( 'Topic Title (Maximum Length: %d):', 'bbpress' ), bbp_get_title_max_length() ); ?></label><br /> 66 <input type="text" id="bbp_topic_title" value="<?php bbp_form_topic_title(); ?>" tabindex="<?php bbp_tab_index(); ?>"size="40" name="bbp_topic_title" maxlength="<?php bbp_title_max_length(); ?>" />66 <input type="text" id="bbp_topic_title" value="<?php bbp_form_topic_title(); ?>" size="40" name="bbp_topic_title" maxlength="<?php bbp_title_max_length(); ?>" /> 67 67 </p> 68 68 … … 75 75 <p> 76 76 <label for="bbp_reply_content"><?php _e( 'Reply:', 'bbpress' ); ?></label><br /> 77 <textarea id="bbp_topic_content" tabindex="<?php bbp_tab_index(); ?>"name="bbp_topic_content" cols="60" rows="6"><?php bbp_form_topic_content(); ?></textarea>77 <textarea id="bbp_topic_content" name="bbp_topic_content" cols="60" rows="6"><?php bbp_form_topic_content(); ?></textarea> 78 78 </p> 79 79 … … 99 99 <p> 100 100 <label for="bbp_topic_tags"><?php _e( 'Topic Tags:', 'bbpress' ); ?></label><br /> 101 <input type="text" value="<?php bbp_form_topic_tags(); ?>" tabindex="<?php bbp_tab_index(); ?>"size="40" name="bbp_topic_tags" id="bbp_topic_tags" <?php disabled( bbp_is_topic_spam() ); ?> />101 <input type="text" value="<?php bbp_form_topic_tags(); ?>" size="40" name="bbp_topic_tags" id="bbp_topic_tags" <?php disabled( bbp_is_topic_spam() ); ?> /> 102 102 </p> 103 103 … … 138 138 139 139 <p> 140 <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox" value="bbp_subscribe" <?php bbp_form_topic_subscribed(); ?> tabindex="<?php bbp_tab_index(); ?>"/>140 <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox" value="bbp_subscribe" <?php bbp_form_topic_subscribed(); ?> /> 141 141 142 142 <?php if ( bbp_is_topic_edit() && ( get_the_author_meta( 'ID' ) != bbp_get_current_user_id() ) ) : ?> … … 162 162 <legend><?php _e( 'Revision', 'bbpress' ); ?></legend> 163 163 <div> 164 <input name="bbp_log_topic_edit" id="bbp_log_topic_edit" type="checkbox" value="1" <?php bbp_form_topic_log_edit(); ?> tabindex="<?php bbp_tab_index(); ?>"/>164 <input name="bbp_log_topic_edit" id="bbp_log_topic_edit" type="checkbox" value="1" <?php bbp_form_topic_log_edit(); ?> /> 165 165 <label for="bbp_log_topic_edit"><?php _e( 'Keep a log of this edit:', 'bbpress' ); ?></label><br /> 166 166 </div> … … 168 168 <div> 169 169 <label for="bbp_topic_edit_reason"><?php printf( __( 'Optional reason for editing:', 'bbpress' ), bbp_get_current_user_name() ); ?></label><br /> 170 <input type="text" value="<?php bbp_form_topic_edit_reason(); ?>" tabindex="<?php bbp_tab_index(); ?>"size="40" name="bbp_topic_edit_reason" id="bbp_topic_edit_reason" />170 <input type="text" value="<?php bbp_form_topic_edit_reason(); ?>" size="40" name="bbp_topic_edit_reason" id="bbp_topic_edit_reason" /> 171 171 </div> 172 172 </fieldset> … … 182 182 <?php do_action( 'bbp_theme_before_topic_form_submit_button' ); ?> 183 183 184 <button type="submit" tabindex="<?php bbp_tab_index(); ?>"id="bbp_topic_submit" name="bbp_topic_submit" class="button submit"><?php _e( 'Submit', 'bbpress' ); ?></button>184 <button type="submit" id="bbp_topic_submit" name="bbp_topic_submit" class="button submit"><?php _e( 'Submit', 'bbpress' ); ?></button> 185 185 186 186 <?php do_action( 'bbp_theme_after_topic_form_submit_button' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.