summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authormyk%mozilla.org <>2003-10-25 10:34:33 +0200
committermyk%mozilla.org <>2003-10-25 10:34:33 +0200
commitef9e98bdb9fefc28169e4a8038f77d328878adf9 (patch)
tree7f5fcb94eed529e13be633964b63d3fffd62797c /Bugzilla
parent3eb8091b6343c96230b87f5cce8b07acbdf1aba3 (diff)
downloadbugzilla-ef9e98bdb9fefc28169e4a8038f77d328878adf9.tar.gz
bugzilla-ef9e98bdb9fefc28169e4a8038f77d328878adf9.tar.xz
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
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Flag.pm6
1 files changed, 3 insertions, 3 deletions
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");
}