1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-04 15:57:45 +02:00

some fixes...

git-svn-id: file:///svn/phpbb/trunk@6854 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2007-01-07 17:25:47 +00:00
parent ec7936509a
commit 8f4c3a1fee
3 changed files with 16 additions and 18 deletions

View File

@@ -1648,7 +1648,7 @@ function add_default_groups()
*/
function add_bots()
{
global $db, $convert, $user;
global $db, $convert, $user, $config;
$sql = 'SELECT group_id FROM ' . GROUPS_TABLE . " WHERE group_name = 'BOTS'";
$result = $db->sql_query($sql);
@@ -1725,22 +1725,19 @@ function add_bots()
foreach ($bots as $bot_name => $bot_ary)
{
$sql = 'INSERT INTO ' . USERS_TABLE . ' ' . $db->sql_build_array('INSERT', array(
'user_type' => GROUP_HIDDEN,
'group_id' => $group_id,
'username' => $bot_name,
'username_clean' => utf8_clean_string($bot_name),
'user_regdate' => time(),
'user_permissions' => '',
'user_sig' => '',
'user_interests' => '',
'user_password' => '',
'user_lang' => 'en',
'user_style' => 1,
'user_rank' => 1,
'user_colour' => '9E8DA7')
$user_row = array(
'user_type' => USER_IGNORE,
'group_id' => $group_id,
'username' => $bot_name,
'user_regdate' => time(),
'user_password' => '',
'user_colour' => '9E8DA7',
'user_email' => '',
'user_lang' => $config['default_lang'],
'user_style' => 1,
'user_timezone' => 0,
'user_allow_massemail' => 0,
);
$db->sql_query($sql);
$user_id = $db->sql_nextid();