Ticket #6011: 6011.01.patch
| File 6011.01.patch, 2.8 KB (added by , 11 years ago) |
|---|
-
src/bp-templates/bp-legacy/buddypress/groups/create.php
75 75 <strong><?php _e('This is a hidden group', 'buddypress' ); ?></strong> 76 76 </label> 77 77 <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; ?> 79 81 <li><?php _e( 'This group will not be listed in the groups directory or search results.', 'buddypress' ); ?></li> 80 82 <li><?php _e( 'Group content and activity will only be visible to members of the group.', 'buddypress' ); ?></li> 81 83 </ul> 82 84 83 85 </div> 84 86 85 <h4><?php _e( 'Group Invitations', 'buddypress' ); ?></h4> 87 <?php if ( bp_is_active( 'friends' ) ) : ?> 88 <h4><?php _e( 'Group Invitations', 'buddypress' ); ?></h4> 86 89 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> 88 91 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> 94 97 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> 99 102 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; ?> 105 109 106 110 <?php if ( bp_is_active( 'forums' ) ) : ?> 107 111