Ticket #6356: 6356.02.patch
File 6356.02.patch, 1.2 KB (added by , 9 years ago) |
---|
-
src/bp-templates/bp-legacy/buddypress/groups/create.php
267 267 */ 268 268 do_action( 'bp_before_group_invites_creation_step' ); ?> 269 269 270 <?php if ( bp_is_active( 'friends' ) && bp_get_total_friend_count( bp_loggedin_user_id() ) ) : ?>270 <?php if ( bp_is_active( 'friends' ) && bp_get_total_friend_count( bp_loggedin_user_id() ) && bp_get_new_group_invite_friend_list() ) : ?> 271 271 272 272 <div class="left-menu"> 273 273 … … 316 316 317 317 </div><!-- .main-column --> 318 318 319 <?php else : ?>319 <?php elseif( bp_get_total_friend_count( bp_loggedin_user_id() ) && !bp_get_new_group_invite_friend_list() ) : ?> 320 320 321 <div id="message" class="info"> 322 <p><?php _e( 'You currently have no friends that can be invited to this group.', 'buddypress' ); ?></p> 323 </div> 324 325 <?php else: ?> 326 321 327 <div id="message" class="info"> 322 328 <p><?php _e( 'Once you have built up friend connections you will be able to invite others to your group.', 'buddypress' ); ?></p> 323 329 </div>