Ticket #1982: 1982.001.diff
File 1982.001.diff, 1.1 KB (added by , 14 years ago) |
---|
-
bp-themes/bp-default/forums/index.php
38 38 <label><?php _e( 'Post In Group Forum:', 'buddypress' ) ?></label> 39 39 <select id="topic_group_id" name="topic_group_id"> 40 40 <?php while ( bp_groups() ) : bp_the_group(); ?> 41 <option value="">----</option> 41 42 <?php if ( 'public' == bp_get_group_status() ) : ?> 42 43 <option value="<?php bp_group_id() ?>"><?php bp_group_name() ?></option> 43 44 <?php endif; ?> -
bp-forums.php
73 73 74 74 bp_core_redirect( bp_get_group_permalink( $bp->groups->current_group ) . '/forum/topic/' . $topic->topic_slug . '/' ); 75 75 } 76 } else { 77 bp_core_add_message( __( 'You must pick the group forum where you would like to post this topic.', 'buddypress'), 'error' ); 76 78 } 77 79 } 78 80