- Timestamp:
- 01/09/2011 10:31:19 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-themes/bbp-twentyten/form-bbp_topic.php
r2782 r2784 56 56 </p> 57 57 58 <p class="form-allowed-tags"> 58 <p class="form-allowed-tags"> 59 59 <label><?php _e( 'You may use these <abbr title="HyperText Markup Language">HTML</abbr> tags and attributes:','bbpress' ); ?></label><br /> 60 60 <code><?php bbp_allowed_tags(); ?></code> … … 79 79 <?php endif; ?> 80 80 81 <?php if ( current_user_can( 'moderate' ) ) : ?> 82 83 <p> 84 85 <label for="bbp_stick_topic"><?php _e( 'Topic Type:', 'bbpress' ); ?></label><br /> 86 87 <?php bbp_topic_type_select( array( 'tab' => 16 ) ); ?> 88 89 </p> 90 91 <?php endif; ?> 92 81 93 <?php if ( bbp_is_subscriptions_active() && !bbp_is_anonymous() && ( !bbp_is_topic_edit() || ( bbp_is_topic_edit() && !bbp_is_topic_anonymous() ) ) ) : ?> 82 94 … … 84 96 <?php if ( bbp_is_topic_edit() && $post->post_author != bbp_get_current_user_id() ) : ?> 85 97 86 <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox" value="bbp_subscribe"<?php checked( true, bbp_is_user_subscribed( $post->post_author ) ); ?> tabindex="1 6" />98 <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox" value="bbp_subscribe"<?php checked( true, bbp_is_user_subscribed( $post->post_author ) ); ?> tabindex="18" /> 87 99 <label for="bbp_topic_subscription"><?php _e( 'Notify the author of follow-up replies via email', 'bbpress' ); ?></label> 88 100 89 101 <?php else : ?> 90 102 91 <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox" value="bbp_subscribe"<?php checked( true, bbp_is_user_subscribed( bbp_get_user_id( 0, false, true ) ) ); ?> tabindex="1 6" />103 <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox" value="bbp_subscribe"<?php checked( true, bbp_is_user_subscribed( bbp_get_user_id( 0, false, true ) ) ); ?> tabindex="18" /> 92 104 <label for="bbp_topic_subscription"><?php _e( 'Notify me of follow-up replies via email', 'bbpress' ); ?></label> 93 105 … … 102 114 <legend><?php _e( 'Revision', 'bbpress' ); ?></legend> 103 115 <div> 104 <input name="bbp_log_topic_edit" id="bbp_log_topic_edit" type="checkbox" value="1" checked="checked" tabindex=" 18" />105 <label for="bbp_log_topic_edit"><?php _e( 'Keep a log of this edit:', 'bbpress' ); ?></label><br /> 116 <input name="bbp_log_topic_edit" id="bbp_log_topic_edit" type="checkbox" value="1" checked="checked" tabindex="20" /> 117 <label for="bbp_log_topic_edit"><?php _e( 'Keep a log of this edit:', 'bbpress' ); ?></label><br /> 106 118 </div> 107 119 108 <div> 120 <div> 109 121 <label for="bbp_topic_edit_reason"><?php printf( __( 'Optional reason for editing:', 'bbpress' ), bbp_get_current_user_name() ); ?></label><br /> 110 <input type="text" value="" tabindex="2 0" size="40" name="bbp_topic_edit_reason" id="bbp_topic_edit_reason" />122 <input type="text" value="" tabindex="22" size="40" name="bbp_topic_edit_reason" id="bbp_topic_edit_reason" /> 111 123 </div> 112 124 </fieldset> … … 115 127 116 128 <p id="bbp_topic_submit_container"> 117 <button type="submit" tabindex="2 2" id="bbp_topic_submit" name="bbp_topic_submit"><?php _e( 'Submit', 'bbpress' ); ?></button>129 <button type="submit" tabindex="24" id="bbp_topic_submit" name="bbp_topic_submit"><?php _e( 'Submit', 'bbpress' ); ?></button> 118 130 </p> 119 131 </div>
Note: See TracChangeset
for help on using the changeset viewer.