summaryrefslogtreecommitdiffstats
path: root/userprefs.cgi
diff options
context:
space:
mode:
authordkl%redhat.com <>2002-04-02 04:06:20 +0200
committerdkl%redhat.com <>2002-04-02 04:06:20 +0200
commitb1a6347387ad22a3f2271f61f8715d75373c615c (patch)
tree4407c24299b504c804e3aad67e17a2cdfb06b9c1 /userprefs.cgi
parentbaf564640e1af29fd6d1cc2e627ed81a430e2034 (diff)
downloadbugzilla-b1a6347387ad22a3f2271f61f8715d75373c615c.tar.gz
bugzilla-b1a6347387ad22a3f2271f61f8715d75373c615c.tar.xz
Fix for bug 133833. Error in templatized version of userprefs.cgi. Error
with ExcludeSelf form variable being all lowercase. Patch by David Lawrence <dkl@rehat.com> 2xr=gerv@mozilla.org
Diffstat (limited to 'userprefs.cgi')
-rwxr-xr-xuserprefs.cgi4
1 files changed, 2 insertions, 2 deletions
diff --git a/userprefs.cgi b/userprefs.cgi
index be8adb348..e38cd4095 100755
--- a/userprefs.cgi
+++ b/userprefs.cgi
@@ -143,8 +143,8 @@ sub DoEmail {
# Note that the value of "excludeself" is assumed to be off if the
# preference does not exist in the user's list, unlike other
# preferences whose value is assumed to be on if they do not exist.
- if (exists($emailflags{'excludeself'})
- && $emailflags{'excludeself'} eq 'on')
+ if (exists($emailflags{'ExcludeSelf'})
+ && $emailflags{'ExcludeSelf'} eq 'on')
{
$vars->{'excludeself'} = 1;
}