aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/profile.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-05-30 18:22:14 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-05-30 18:22:14 +0000
commit7401fc7d0750da12b7aa7b253ba563dd9f4ba087 (patch)
tree7b6debbfcf4222ca69588dcb17e69f0bdc377684 /phpBB/profile.php
parent5ecbbab23c1ddc73ea729d42873a23a1656ff5bf (diff)
downloadforums-7401fc7d0750da12b7aa7b253ba563dd9f4ba087.tar
forums-7401fc7d0750da12b7aa7b253ba563dd9f4ba087.tar.gz
forums-7401fc7d0750da12b7aa7b253ba563dd9f4ba087.tar.bz2
forums-7401fc7d0750da12b7aa7b253ba563dd9f4ba087.tar.xz
forums-7401fc7d0750da12b7aa7b253ba563dd9f4ba087.zip
Some changes for usergroup addition
git-svn-id: file:///svn/phpbb/trunk@376 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/profile.php')
-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();