diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2007-06-10 13:42:55 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2007-06-10 13:42:55 +0000 |
commit | afb7f26cccf999cc4a4a1fddf25ed24b585b45e0 (patch) | |
tree | dfa6945a59ac80020feee974970c0c0008c129d3 /phpBB/includes/functions_convert.php | |
parent | de739b6532f16cc187a3ef492343807229f7b3c4 (diff) | |
download | forums-afb7f26cccf999cc4a4a1fddf25ed24b585b45e0.tar forums-afb7f26cccf999cc4a4a1fddf25ed24b585b45e0.tar.gz forums-afb7f26cccf999cc4a4a1fddf25ed24b585b45e0.tar.bz2 forums-afb7f26cccf999cc4a4a1fddf25ed24b585b45e0.tar.xz forums-afb7f26cccf999cc4a4a1fddf25ed24b585b45e0.zip |
#12287
#12219
A little clean-up in the installer (thanks ToonArmy)
git-svn-id: file:///svn/phpbb/trunk@7744 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_convert.php')
-rw-r--r-- | phpBB/includes/functions_convert.php | 13 |
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] ); } |