From 7401fc7d0750da12b7aa7b253ba563dd9f4ba087 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Wed, 30 May 2001 18:22:14 +0000 Subject: [PATCH] Some changes for usergroup addition git-svn-id: file:///svn/phpbb/trunk@376 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/profile.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/profile.php b/phpBB/profile.php index c9dde3d122..a15ad94aa9 100644 --- a/phpBB/profile.php +++ b/phpBB/profile.php @@ -883,9 +883,9 @@ if(isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode'])) if($result = $db->sql_query($sql)) { $sql = "INSERT INTO ".GROUPS_TABLE." - (group_name, group_note) + (group_name, group_note, single_user) VALUES - ('$username', 'Personal User')"; + ('$username', 'Personal User', 1)"; if($result = $db->sql_query($sql)) { $group_id = $db->sql_nextid();