diff options
author | bbaetz%cs.mcgill.ca <> | 2001-10-23 22:44:50 +0000 |
---|---|---|
committer | bbaetz%cs.mcgill.ca <> | 2001-10-23 22:44:50 +0000 |
commit | 9042b58f0ceb4896bd99542a3f59a368158bbccc (patch) | |
tree | dfa9027e25cd0456fad9697bc4038a12daae63a6 /process_bug.cgi | |
parent | 35f74cea13f5d1ce63d56cd643d2f2963bbb90a5 (diff) | |
download | bugs-9042b58f0ceb4896bd99542a3f59a368158bbccc.tar bugs-9042b58f0ceb4896bd99542a3f59a368158bbccc.tar.gz bugs-9042b58f0ceb4896bd99542a3f59a368158bbccc.tar.bz2 bugs-9042b58f0ceb4896bd99542a3f59a368158bbccc.tar.xz bugs-9042b58f0ceb4896bd99542a3f59a368158bbccc.zip |
Bug 97469 - Assignee/QA/Reporter/CC don't get email on restricted bugs.
Also fixes seeing bugs in the buglist (bug 95024), dependancy lists,
tooltips, duplicates, and everywhere else I could see which checked group
bugs.groupset == 0.
Also fxed bug 101560, by clearing BASH_ENV
r=myk,justdave
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 46 |
1 files changed, 10 insertions, 36 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index 0882db0ae..416ee9ccd 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -352,6 +352,11 @@ empowered user, may make that change to the $f field. # Confirm that the reporter of the current bug can access the bug we are duping to. sub DuplicateUserConfirm { + # if we've already been through here, then exit + if (defined $::FORM{'confirm_add_duplicate'}) { + return; + } + my $dupe = trim($::FORM{'id'}); my $original = trim($::FORM{'dup_id'}); @@ -360,45 +365,13 @@ sub DuplicateUserConfirm { SendSQL("SELECT profiles.groupset FROM profiles WHERE profiles.userid =".SqlQuote($reporter)); my $reportergroupset = FetchOneColumn(); - SendSQL("SELECT ((groupset & $reportergroupset) = groupset) , reporter , assigned_to , qa_contact , - reporter_accessible , assignee_accessible , qacontact_accessible , cclist_accessible - FROM bugs - WHERE bug_id = $original"); - - my ($isauthorized, $originalreporter, $assignee, $qacontact, $reporter_accessible, - $assignee_accessible, $qacontact_accessible, $cclist_accessible) = FetchSQLData(); - - # If reporter is authorized via the database, or is the original reporter, assignee, - # or QA Contact, we'll automatically confirm they can be added to the cc list - if ($isauthorized - || ($reporter_accessible && $originalreporter == $reporter) - || ($assignee_accessible && $assignee == $reporter) - || ($qacontact_accessible && $qacontact == $reporter)) { - + if (CanSeeBug($original, $reporter, $reportergroupset)) { $::FORM{'confirm_add_duplicate'} = "1"; - return; - } - - # Try to authorize the user one more time by seeing if they are on - # the cc: list. If so, finish validation and return. - if ($cclist_accessible ) { - my @cclist; - SendSQL("SELECT cc.who - FROM bugs , cc - WHERE bugs.bug_id = $original - AND cc.bug_id = bugs.bug_id - "); - while (my ($ccwho) = FetchSQLData()) { - if ($reporter == $ccwho) { - $::FORM{'confirm_add_duplicate'} = "1"; - return; - } - } - } - - if (defined $::FORM{'confirm_add_duplicate'}) { return; } + + SendSQL("SELECT cclist_accessible FROM bugs WHERE bug_id = $original"); + my $cclist_accessible = FetchOneColumn(); # Once in this part of the subroutine, the user has not been auto-validated # and the duper has not chosen whether or not to add to CC list, so let's @@ -985,6 +958,7 @@ foreach my $id (@idlist) { my $write = "WRITE"; # Might want to make a param to control # whether we do LOW_PRIORITY ... SendSQL("LOCK TABLES bugs $write, bugs_activity $write, cc $write, " . + "cc AS selectVisible_cc $write, " . "profiles $write, dependencies $write, votes $write, " . "keywords $write, longdescs $write, fielddefs $write, " . "keyworddefs READ, groups READ, attachments READ, products READ"); |