From: bugreport%peshkin.net <> Date: Tue, 1 Oct 2002 07:13:58 +0000 (+0000) Subject: Bug 171639 dupes not marked in original bug X-Git-Tag: bugzilla-2.17.1~99 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5f576f463b01c35b411ac14d3a342ec0003e24cf;p=thirdparty%2Fbugzilla.git Bug 171639 dupes not marked in original bug 2xr=bbaetz --- diff --git a/process_bug.cgi b/process_bug.cgi index be04be2075..4fb42d8b0d 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -1522,7 +1522,8 @@ foreach my $id (@idlist) { LogActivityEntry($duplicate,"cc","",DBID_to_name($reporter)); SendSQL("INSERT INTO cc (who, bug_id) VALUES ($reporter, " . SqlQuote($duplicate) . ")"); } - AppendComment($duplicate, $::COOKIE{'Bugzilla_login'}, "*** Bug $::FORM{'id'} has been marked as a duplicate of this bug. ***", 1); + # Bug 171639 - Duplicate notifications do not need to be private. + AppendComment($duplicate, $::COOKIE{'Bugzilla_login'}, "*** Bug $::FORM{'id'} has been marked as a duplicate of this bug. ***", 0); CheckFormFieldDefined(\%::FORM,'comment'); SendSQL("INSERT INTO duplicates VALUES ($duplicate, $::FORM{'id'})");