diff options
author | lpsolit%gmail.com <> | 2005-12-21 06:16:07 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-12-21 06:16:07 +0000 |
commit | 77788555fd12b38f7db7022f84ed4f5eb17f5301 (patch) | |
tree | baa3573feb5ffc4ee14dead2b5d513901f9ccc3d /createaccount.cgi | |
parent | Bug 302326: Column sort links in bug lists should use field IDs instead of na... (diff) | |
download | bugzilla-77788555fd12b38f7db7022f84ed4f5eb17f5301.tar.gz bugzilla-77788555fd12b38f7db7022f84ed4f5eb17f5301.tar.bz2 bugzilla-77788555fd12b38f7db7022f84ed4f5eb17f5301.zip |
Bug 320436: New self-created accounts dont get regexp group memberships - Patch by Joel Peshkin <bugreport@peshkin.net> r=LpSolit a=justdave
Diffstat (limited to 'createaccount.cgi')
-rwxr-xr-x | createaccount.cgi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/createaccount.cgi b/createaccount.cgi index 8bb7829ef..01b746c89 100755 --- a/createaccount.cgi +++ b/createaccount.cgi @@ -69,7 +69,9 @@ if (defined($login)) { $vars->{'login'} = $login; - $dbh->bz_lock_tables('profiles WRITE', 'email_setting WRITE', 'tokens READ'); + $dbh->bz_lock_tables('profiles WRITE', 'groups READ', + 'user_group_map WRITE', 'email_setting WRITE', + 'tokens READ'); if (!is_available_username($login)) { # Account already exists |