--- /home/dave/drupal/drupal-4.7.0/modules/archive.module	Tue Mar  7 01:36:49 2006
+++ archive.module	Mon May 15 15:05:09 2006
@@ -115,7 +115,7 @@
 
   $days_with_posts = array();
   while ($day_with_post = db_fetch_object($result)) {
-    $daynum = date('j', $day_with_post->created + $user->timezone);
+    $daynum = date('j', $day_with_post->created);
     if (isset($days_with_posts[$daynum])) {
       $days_with_posts[$daynum]++;
     }
@@ -220,8 +220,8 @@
 function archive_page($year = 0, $month = 0, $day = 0) {
   global $user;
 
-  $date = mktime(0, 0, 0, $month, $day, $year) - $user->timezone;
-  $date_end = mktime(0, 0, 0, $month, $day + 1, $year) - $user->timezone;
+  $date = mktime(0, 0, 0, $month, $day, $year);
+  $date_end = mktime(0, 0, 0, $month, $day + 1, $year);
 
   // Display form.
   $output = archive_browse_form($year, $month, $day);
