summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authormyk%mozilla.org <>2002-09-29 03:59:28 +0200
committermyk%mozilla.org <>2002-09-29 03:59:28 +0200
commitc20c606269ff7abb32b8bbdf7813cf738783e28f (patch)
tree826ba94d8ecc850e3a56fea75bf57d42c14cb7b3 /Bugzilla
parentb14bfb211d5787cf30f42a2e9c3a311bf09800c3 (diff)
downloadbugzilla-c20c606269ff7abb32b8bbdf7813cf738783e28f.tar.gz
bugzilla-c20c606269ff7abb32b8bbdf7813cf738783e28f.tar.xz
Fixing build bustage.
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/User.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm
index 72870d544..ae261e0d3 100644
--- a/Bugzilla/User.pm
+++ b/Bugzilla/User.pm
@@ -155,7 +155,7 @@ sub email_prefs {
exists($prefs->{ExcludeSelf}) && $prefs->{ExcludeSelf} eq "on";
# Determine the value of the global request preferences.
- foreach my $pref qw(FlagRequestee FlagRequester) {
+ foreach my $pref (qw(FlagRequestee FlagRequester)) {
$prefs->{$pref} = !exists($prefs->{$pref}) || $prefs->{$pref} eq "on";
}