Changeset 6202
- Timestamp:
- 12/29/2016 08:26:19 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/extend/buddypress/groups.php
r6196 r6202 276 276 $checked = is_admin() ? bp_group_is_forum_enabled( $group ) : bp_get_new_group_enable_forum() || bp_group_is_forum_enabled( bp_get_group_id() ); ?> 277 277 278 <h 4><?php esc_html_e( 'Group Forum Settings', 'bbpress' ); ?></h4>278 <h2><?php esc_html_e( 'Group Forum Settings', 'bbpress' ); ?></h2> 279 279 280 280 <fieldset> … … 284 284 <div class="field-group"> 285 285 <div class="checkbox"> 286 <label ><input type="checkbox" name="bbp-edit-group-forum" id="bbp-edit-group-forum" value="1"<?php checked( $checked ); ?> /> <?php esc_html_e( 'Yes. I want this group to have a forum.', 'bbpress' ); ?></label>286 <label for="bbp-edit-group-forum"><input type="checkbox" name="bbp-edit-group-forum" id="bbp-edit-group-forum" value="1"<?php checked( $checked ); ?> /> <?php esc_html_e( 'Yes. I want this group to have a forum.', 'bbpress' ); ?></label> 287 287 </div> 288 288 … … 484 484 $checked = bp_get_new_group_enable_forum() || groups_get_groupmeta( $group_id, 'forum_id' ); ?> 485 485 486 <h 4><?php esc_html_e( 'Group Forum', 'bbpress' ); ?></h4>486 <h2><?php esc_html_e( 'Group Forum', 'bbpress' ); ?></h2> 487 487 488 488 <p><?php esc_html_e( 'Create a discussion forum to allow members of this group to communicate in a structured, bulletin-board style fashion.', 'bbpress' ); ?></p> … … 835 835 bbp_the_forum(); ?> 836 836 837 <h 3><?php bbp_forum_title(); ?></h3>837 <h2><?php bbp_forum_title(); ?></h2> 838 838 839 839 <?php bbp_get_template_part( 'content', 'single-forum' ); … … 867 867 if ( ! bbp_topics() ) { 868 868 bp_do_404( bbp_get_forum_permalink( $forum_id ) ); ?> 869 <h 3><?php bbp_forum_title(); ?></h3>869 <h2><?php bbp_forum_title(); ?></h2> 870 870 <?php bbp_get_template_part( 'feedback', 'no-topics' ); 871 871 break; … … 875 875 bbp_the_topic(); ?> 876 876 877 <h 3><?php bbp_topic_title(); ?></h3>877 <h2><?php bbp_topic_title(); ?></h2> 878 878 879 879 <?php … … 929 929 if ( ! bbp_replies() ) { 930 930 bp_do_404( bbp_get_forum_permalink( $forum_id ) ); ?> 931 <h 3><?php bbp_forum_title(); ?></h3>931 <h2><?php bbp_forum_title(); ?></h2> 932 932 <?php bbp_get_template_part( 'feedback', 'no-replies' ); 933 933 break; … … 937 937 bbp_the_reply(); ?> 938 938 939 <h 3><?php bbp_reply_title(); ?></h3>939 <h2><?php bbp_reply_title(); ?></h2> 940 940 941 941 <?php if ( bp_action_variable( $offset + 2 ) === bbp_get_edit_rewrite_id() ) :
Note: See TracChangeset
for help on using the changeset viewer.