Changeset 13762 for trunk/src/bp-groups/actions/create.php
- Timestamp:
- 03/09/2024 10:55:43 AM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/actions/create.php
r13449 r13762 13 13 * @since 1.2.0 14 14 * 15 * @return bool15 * @return void 16 16 */ 17 17 function groups_action_create_group() { … … 19 19 // If we're not at domain.org/groups/create/ then return false. 20 20 if ( ! bp_is_groups_component() || ! bp_is_current_action( 'create' ) ) { 21 return false;21 return; 22 22 } 23 23 24 24 if ( ! is_user_logged_in() ) { 25 return false;25 return; 26 26 } 27 27
Note: See TracChangeset
for help on using the changeset viewer.