diff options
author | Ruslan Uzdenov <rxu@mail.ru> | 2009-06-27 08:36:40 +0000 |
---|---|---|
committer | Ruslan Uzdenov <rxu@mail.ru> | 2009-06-27 08:36:40 +0000 |
commit | adaeec1ec9f7cd55522a5c4d0bf0538dbc0c6f99 (patch) | |
tree | 70452abea87a66678d78e9be28567c3f428193f5 /phpBB/includes/functions_user.php | |
parent | 076067f85649e53c77aceddf68b469ef59a294ca (diff) | |
download | forums-adaeec1ec9f7cd55522a5c4d0bf0538dbc0c6f99.tar forums-adaeec1ec9f7cd55522a5c4d0bf0538dbc0c6f99.tar.gz forums-adaeec1ec9f7cd55522a5c4d0bf0538dbc0c6f99.tar.bz2 forums-adaeec1ec9f7cd55522a5c4d0bf0538dbc0c6f99.tar.xz forums-adaeec1ec9f7cd55522a5c4d0bf0538dbc0c6f99.zip |
Fixed Bug #45115 - Signature parsing flags are not stored in DB
Authorised by: AcydBurn
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9696 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r-- | phpBB/includes/functions_user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php index bb54a14262..4ea094e451 100644 --- a/phpBB/includes/functions_user.php +++ b/phpBB/includes/functions_user.php @@ -187,7 +187,7 @@ function user_add($user_row, $cp_data = false) 'user_ip' => '', 'user_regdate' => time(), 'user_passchg' => time(), - 'user_options' => 895, + 'user_options' => 230271, // We do not set the new flag here - registration scripts need to specify it 'user_new' => 0, |