summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2001-11-30 09:29:15 +0000
committerDerick Rethans <derick@php.net>2001-11-30 09:29:15 +0000
commit2afc5d6924e5991820150de1ab262f16e69d477c (patch)
tree34779cec50c798a8e61fcd4769ba36c569ca9d6e /win32
parent2b88417b8cf9f64f6beea0afc80b8e6fe9cfdf38 (diff)
downloadphp-git-2afc5d6924e5991820150de1ab262f16e69d477c.tar.gz
- Fix for bug 8909 and 12680 (timezone problem)
Diffstat (limited to 'win32')
-rw-r--r--win32/sendmail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/sendmail.c b/win32/sendmail.c
index 0e3ddb34e8..22127faf7f 100644
--- a/win32/sendmail.c
+++ b/win32/sendmail.c
@@ -356,7 +356,7 @@ int PostHeader(char *RPath, char *Subject, char *mailTo, char *xheaders)
tm->tm_hour,
tm->tm_min,
tm->tm_sec,
- (_timezone > 0) ? "+" : (_timezone < 0) ? "-" : "",
+ (_timezone <= 0) ? "+" : (_timezone > 0) ? "-" : "",
zoneh,
zonem);
}