summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
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");
}