mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
- Fix for bug 8909 and 12680 (timezone problem)
This commit is contained in:
parent
2b88417b8c
commit
2afc5d6924
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue