From: Derick Rethans Date: Fri, 30 Nov 2001 09:29:15 +0000 (+0000) Subject: - Fix for bug 8909 and 12680 (timezone problem) X-Git-Tag: ChangeLog~220 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2afc5d6924e5991820150de1ab262f16e69d477c;p=php - Fix for bug 8909 and 12680 (timezone problem) --- 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); }