From f111b84e0516594dc4b03bf9824e1c13a19c921c Mon Sep 17 00:00:00 2001 From: James Moore Date: Wed, 7 Nov 2001 14:22:15 +0000 Subject: [PATCH] @ - Fix Bug 9878 (patch by bfoddy@mediaone.net) (jmoore) --- ext/standard/datetime.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ext/standard/datetime.c b/ext/standard/datetime.c index c9759c68019..b86b4e127e8 100644 --- a/ext/standard/datetime.c +++ b/ext/standard/datetime.c @@ -182,10 +182,9 @@ void php_mktime(INTERNAL_FUNCTION_PARAMETERS, int gm) #else /* ** If correcting for daylight savings time, we set the adjustment to - ** the value of timezone - 3600 seconds. Otherwise, we need to overcorrect and - ** set the adjustment to the main timezone + 3600 seconds. + ** the value of timezone - 3600 seconds. */ - gmadjust = -(is_dst ? timezone - 3600 : timezone + 3600); + gmadjust = -(is_dst ? timezone - 3600 : timezone); #endif seconds += gmadjust; }