Skip to content

Commit

Permalink
Update webapp/src/Service/ImportExportService.php
Browse files Browse the repository at this point in the history
Co-authored-by: Nicky Gerritsen <[email protected]>
  • Loading branch information
vmcj and nickygerritsen authored Oct 31, 2023
1 parent 8b0cc6e commit 26ba0fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/Service/ImportExportService.php
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ public function importGroupsJson(array $data, ?string &$message = null, ?array &
'visible' => !($group['hidden'] ?? false),
'sortorder' => @$group['sortorder'],
'color' => @$group['color'],
'allow_self_registration' => @$group['allow_self_registration'],
'allow_self_registration' => $group['allow_self_registration'] ?? false,
];
}

Expand Down

0 comments on commit 26ba0fd

Please sign in to comment.