aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/profile.php4
1 files 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();