aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_convert.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/functions_convert.php')
-rw-r--r--phpBB/includes/functions_convert.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/phpBB/includes/functions_convert.php b/phpBB/includes/functions_convert.php
index 2723821f23..4a80b94628 100644
--- a/phpBB/includes/functions_convert.php
+++ b/phpBB/includes/functions_convert.php
@@ -1667,12 +1667,12 @@ function add_default_groups()
global $db;
$default_groups = array(
- 'GUESTS' => array('', 0),
- 'REGISTERED' => array('', 0),
- 'REGISTERED_COPPA' => array('', 0),
- 'GLOBAL_MODERATORS' => array('00AA00', 1),
- 'ADMINISTRATORS' => array('AA0000', 1),
- 'BOTS' => array('9E8DA7', 0)
+ 'GUESTS' => array('', 0, 0),
+ 'REGISTERED' => array('', 0, 0),
+ 'REGISTERED_COPPA' => array('', 0, 0),
+ 'GLOBAL_MODERATORS' => array('00AA00', 1, 0),
+ 'ADMINISTRATORS' => array('AA0000', 1, 1),
+ 'BOTS' => array('9E8DA7', 0, 0)
);
$sql = 'SELECT *
@@ -1698,6 +1698,7 @@ function add_default_groups()
'group_type' => GROUP_SPECIAL,
'group_colour' => $data[0],
'group_legend' => $data[1],
+ 'group_founder_manage' => $data[2]
);
}