Index: wp-admin/options-general.php
===================================================================
--- wp-admin/options-general.php	(revision 11001)
+++ wp-admin/options-general.php	(working copy)
@@ -159,7 +159,7 @@
 <span>
 <?php if (get_option('timezone_string')) : ?>
 	<?php
-	$now = localtime(time(),true);
+	$now = localtime(strtotime(gmdate("Y-m-d H:i:s")),true);
 	if ($now['tm_isdst']) _e('This timezone is currently in daylight savings time.');
 	else _e('This timezone is currently in standard time.');
 	?>
@@ -168,7 +168,7 @@
 	if (function_exists('timezone_transitions_get') && $tzstring) {
 		$dateTimeZoneSelected = new DateTimeZone($tzstring);
 		foreach (timezone_transitions_get($dateTimeZoneSelected) as $tr) {
-			if ($tr['ts'] > time()) {
+			if ($tr['ts'] > strtotime(gmdate("Y-m-d H:i:s"))) {
 			    	$found = true;
 				break;
 			}
