From: Alan Knowles Date: Thu, 22 Jul 2021 05:07:20 +0000 (+0800) Subject: make the groups is_system=1 X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=aae33638020ef471368693db6ba8b74a52e66e02 make the groups is_system=1 --- diff --git a/UpdateDatabase.php b/UpdateDatabase.php index 64b2bcce..9888b5e8 100644 --- a/UpdateDatabase.php +++ b/UpdateDatabase.php @@ -849,21 +849,25 @@ class Pman_Core_UpdateDatabase extends Pman array( 'name' => 'bcc-email', // group who are bcc'ed on all requests. 'type' => 0, // system + 'is_system' => 1, 'display_name' => 'Standard BCC Group' ), array( 'name' => 'system-email-from', 'type' => 0, // system + 'is_system' => 1, 'display_name' => 'Standard System Email From Group' ), array( 'name' => 'core-person-signup-bcc', 'type' => 0, // system + 'is_system' => 1, 'display_name' => 'Standard Person Signup BCC Group' ), array( 'name' => 'Empty Group', // use for no bcc emails. 'type' => 0, + 'is_system' => 1, 'display_name' => 'Standard Empty Group' )