diff options
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; } |