Skip to:
Content

BuddyPress.org

Ticket #1982: 1982.001.diff

File 1982.001.diff, 1.1 KB (added by cnorris23, 14 years ago)
  • bp-themes/bp-default/forums/index.php

     
    3838                                                        <label><?php _e( 'Post In Group Forum:', 'buddypress' ) ?></label>
    3939                                                        <select id="topic_group_id" name="topic_group_id">
    4040                                                                <?php while ( bp_groups() ) : bp_the_group(); ?>
     41                                                                                <option value="">----</option>
    4142                                                                        <?php if ( 'public' == bp_get_group_status() ) : ?>
    4243                                                                                <option value="<?php bp_group_id() ?>"><?php bp_group_name() ?></option>
    4344                                                                        <?php endif; ?>
  • bp-forums.php

     
    7373
    7474                                        bp_core_redirect( bp_get_group_permalink( $bp->groups->current_group ) . '/forum/topic/' . $topic->topic_slug . '/' );
    7575                                }
     76                        } else {
     77                                bp_core_add_message( __( 'You must pick the group forum where you would like to post this topic.', 'buddypress'), 'error' );
    7678                        }
    7779                }
    7880