From ef9e98bdb9fefc28169e4a8038f77d328878adf9 Mon Sep 17 00:00:00 2001 From: "myk%mozilla.org" <> Date: Sat, 25 Oct 2003 08:34:33 +0000 Subject: Fix for bug 183788: make request mail go out when a request is created and there's no requestee but there is a cc: list --- Bugzilla/Flag.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Bugzilla') diff --git a/Bugzilla/Flag.pm b/Bugzilla/Flag.pm index fe54e9d65..a766e9e6f 100644 --- a/Bugzilla/Flag.pm +++ b/Bugzilla/Flag.pm @@ -318,9 +318,9 @@ sub create { $timestamp)"); # Send an email notifying the relevant parties about the flag creation. - if ($flag->{'requestee'} - && ($flag->{'requestee'}->email_prefs->{'FlagRequestee'} - || $flag->{'type'}->{'cc_list'})) + if (($flag->{'requestee'} + && $flag->{'requestee'}->email_prefs->{'FlagRequestee'}) + || $flag->{'type'}->{'cc_list'}) { notify($flag, "request/email.txt.tmpl"); } -- cgit v1.2.3-24-g4f1b