diff options
author | erik%dasbistro.com <> | 2004-09-25 09:06:44 +0200 |
---|---|---|
committer | erik%dasbistro.com <> | 2004-09-25 09:06:44 +0200 |
commit | aad5f4314b7ca70faab085765179394a281a19b5 (patch) | |
tree | 78ae39bdadbffcc9c0b69278d9d23b86dc1d067f | |
parent | 53bad64883aca12a95296c4ab391b22a8bf31bf7 (diff) | |
download | bugzilla-aad5f4314b7ca70faab085765179394a281a19b5.tar.gz bugzilla-aad5f4314b7ca70faab085765179394a281a19b5.tar.xz |
Fix for bug 258029: sets whining group inheritance in the correct order. r,a=justdave
-rwxr-xr-x | checksetup.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index 8254cfc82..4337e2e29 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -4121,7 +4121,7 @@ if (!GroupDoesExist('bz_canusewhines')) { 'other users'); $dbh->do("INSERT IGNORE INTO group_group_map " . "(member_id, grantor_id, grant_type) " . - "VALUES (${whine_group}, ${whineatothers_group}, " . + "VALUES (${whineatothers_group}, ${whine_group}, " . GROUP_MEMBERSHIP . ")"); } |