- Fix for bug 8909 and 12680 (timezone problem)

This commit is contained in:
Derick Rethans 2001-11-30 09:29:15 +00:00
parent 2b88417b8c
commit 2afc5d6924

View file

@ -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);
}