Skip to:
Content

BuddyPress.org

Ticket #6011: 6011.01.patch

File 6011.01.patch, 2.8 KB (added by r-a-y, 11 years ago)
  • src/bp-templates/bp-legacy/buddypress/groups/create.php

     
    7575                                                <strong><?php _e('This is a hidden group', 'buddypress' ); ?></strong>
    7676                                        </label>
    7777                                        <ul>
    78                                                 <li><?php _e( 'Only users who are invited can join the group.', 'buddypress' ); ?></li>
     78                                                <?php if ( bp_is_active( 'friends' ) ) : ?>
     79                                                        <li><?php _e( 'Only users who are invited can join the group.', 'buddypress' ); ?></li>
     80                                                <?php endif; ?>
    7981                                                <li><?php _e( 'This group will not be listed in the groups directory or search results.', 'buddypress' ); ?></li>
    8082                                                <li><?php _e( 'Group content and activity will only be visible to members of the group.', 'buddypress' ); ?></li>
    8183                                        </ul>
    8284
    8385                                </div>
    8486
    85                                 <h4><?php _e( 'Group Invitations', 'buddypress' ); ?></h4>
     87                                <?php if ( bp_is_active( 'friends' ) ) : ?>
     88                                        <h4><?php _e( 'Group Invitations', 'buddypress' ); ?></h4>
    8689
    87                                 <p><?php _e( 'Which members of this group are allowed to invite others?', 'buddypress' ); ?></p>
     90                                        <p><?php _e( 'Which members of this group are allowed to invite others?', 'buddypress' ); ?></p>
    8891
    89                                 <div class="radio">
    90                                         <label>
    91                                                 <input type="radio" name="group-invite-status" value="members"<?php bp_group_show_invite_status_setting( 'members' ); ?> />
    92                                                 <strong><?php _e( 'All group members', 'buddypress' ); ?></strong>
    93                                         </label>
     92                                        <div class="radio">
     93                                                <label>
     94                                                        <input type="radio" name="group-invite-status" value="members"<?php bp_group_show_invite_status_setting( 'members' ); ?> />
     95                                                        <strong><?php _e( 'All group members', 'buddypress' ); ?></strong>
     96                                                </label>
    9497
    95                                         <label>
    96                                                 <input type="radio" name="group-invite-status" value="mods"<?php bp_group_show_invite_status_setting( 'mods' ); ?> />
    97                                                 <strong><?php _e( 'Group admins and mods only', 'buddypress' ); ?></strong>
    98                                         </label>
     98                                                <label>
     99                                                        <input type="radio" name="group-invite-status" value="mods"<?php bp_group_show_invite_status_setting( 'mods' ); ?> />
     100                                                        <strong><?php _e( 'Group admins and mods only', 'buddypress' ); ?></strong>
     101                                                </label>
    99102
    100                                         <label>
    101                                                 <input type="radio" name="group-invite-status" value="admins"<?php bp_group_show_invite_status_setting( 'admins' ); ?> />
    102                                                 <strong><?php _e( 'Group admins only', 'buddypress' ); ?></strong>
    103                                         </label>
    104                                 </div>
     103                                                <label>
     104                                                        <input type="radio" name="group-invite-status" value="admins"<?php bp_group_show_invite_status_setting( 'admins' ); ?> />
     105                                                        <strong><?php _e( 'Group admins only', 'buddypress' ); ?></strong>
     106                                                </label>
     107                                        </div>
     108                                <?php endif; ?>
    105109
    106110                                <?php if ( bp_is_active( 'forums' ) ) : ?>
    107111