Changeset 4994
- Timestamp:
- 06/23/2013 06:08:55 AM (13 years ago)
- Location:
- trunk/templates/default/bbpress
- Files:
-
- 2 edited
-
form-reply.php (modified) (1 diff)
-
form-topic.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/templates/default/bbpress/form-reply.php
r4960 r4994 89 89 <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox" value="bbp_subscribe"<?php bbp_form_topic_subscribed(); ?> tabindex="<?php bbp_tab_index(); ?>" /> 90 90 91 <?php if ( bbp_is_reply_edit() && ( get_the_author_meta( 'ID' ) != bbp_get_current_user_id() ) ) : ?>91 <?php if ( bbp_is_reply_edit() && ( bbp_get_reply_author_id() !== bbp_get_current_user_id() ) ) : ?> 92 92 93 93 <label for="bbp_topic_subscription"><?php _e( 'Notify the author of follow-up replies via email', 'bbpress' ); ?></label> -
trunk/templates/default/bbpress/form-topic.php
r4960 r4994 143 143 <input name="bbp_topic_subscription" id="bbp_topic_subscription" type="checkbox" value="bbp_subscribe" <?php bbp_form_topic_subscribed(); ?> tabindex="<?php bbp_tab_index(); ?>" /> 144 144 145 <?php if ( bbp_is_topic_edit() && ( get_the_author_meta( 'ID' ) != bbp_get_current_user_id() ) ) : ?>145 <?php if ( bbp_is_topic_edit() && ( bbp_get_topic_author_id() !== bbp_get_current_user_id() ) ) : ?> 146 146 147 147 <label for="bbp_topic_subscription"><?php _e( 'Notify the author of follow-up replies via email', 'bbpress' ); ?></label>
Note: See TracChangeset
for help on using the changeset viewer.