diff options
author | dkl%redhat.com <> | 2002-04-02 02:06:20 +0000 |
---|---|---|
committer | dkl%redhat.com <> | 2002-04-02 02:06:20 +0000 |
commit | b1a6347387ad22a3f2271f61f8715d75373c615c (patch) | |
tree | 4407c24299b504c804e3aad67e17a2cdfb06b9c1 /userprefs.cgi | |
parent | Fix for bug 23067: Allow the user to change their email address through the p... (diff) | |
download | bugzilla-b1a6347387ad22a3f2271f61f8715d75373c615c.tar.gz bugzilla-b1a6347387ad22a3f2271f61f8715d75373c615c.tar.bz2 bugzilla-b1a6347387ad22a3f2271f61f8715d75373c615c.zip |
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-x | userprefs.cgi | 4 |
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; } |