fixed some bugs in date sorting.. It is now timezone independent
authorlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 28 Jul 2000 09:54:12 +0000 (09:54 +0000)
committerlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 28 Jul 2000 09:54:12 +0000 (09:54 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@645 7612ce4b-ef26-0410-bec9-ea0150e637f0

ChangeLog
config/july4_theme.php [deleted file]
functions/date.php

index 9f6e240490df6d8bd24e37ae1d7cd129d54d00ff..8bf55c70a6cb7cb9e3f926d46dcdd00dc0601ce0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,6 @@
 Version 0.5pre1 -- DEVELOPMENT
 ------------------------------
+- Searching folders functionality added 
 - Date display now is similar to Netscape Messenger
 - Many bugs have been reported to the list, and been squashed
 - Help system developed 
diff --git a/config/july4_theme.php b/config/july4_theme.php
deleted file mode 100644 (file)
index 33da0e4..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-   /** Author:       Luke Ehresman
-       Date:         January 2, 2000
-       Theme Name:   "July Fourth Theme"
-
-       This is the default theme that comes standard with SquirrelMail.
-       Most of the colors were taken from mail.yahoo.com's theme on their
-       site.
-
-       To create a new theme, just copy this file, and edit the colors.
-       Be sure to rename the file and keep the original, just in case.
-
-       NOTE:
-       Please email any themes you create to luke@usa.om.org for inclusion
-       in further releases of SquirrelMail and for download from the web
-       page.
-    **/
-
-    $color[0]   = "#6495ED"; // (cornflower blue)TitleBar
-    $color[1]   = "#800000"; // (red)
-    $color[2]   = "#8B0000"; // (dark red)       Warning/Error Messages
-    $color[3]   = "#FF0000"; // (bright red)     Left Bar Background
-    $color[4]   = "#FFFFFF"; // (white)          Normal Background
-    $color[5]   = "#FFFFCC"; // (light yellow)   Table Headers
-    $color[6]   = "#0000FF"; // (blue)           Text on left bar
-    $color[7]   = "#1E90FF"; // (blue)           Links
-    $color[8]   = "#000000"; // (black)          Normal text
-    $color[9]   = "#00008B"; // (blue)          
-    $color[10]  = "#0000FF"; // (blue ??)      
-    $color[11]  = "#FFFF00"; // (yellow)         Special Folders color
-?>
index 9d153baf9b5f3db79c888b940162e5205213dbcf..bdc0ad586b64529bfdb5e9ebccf36b6a6fb4b355 100644 (file)
 
    function getDateString($stamp) {
       $now = time();
-      $midnight = $now - ($now % 86400) + 14400;
+      $midnight = $now - ($now % 86400) - date("Z", $now);
 
       if ($midnight < $stamp) {
          // Today
          return date("g:i a", $stamp);
-      } else if ($midnight - 604800 < $stamp) {
+      } else if ($midnight - (60 * 60 * 24 * 6) < $stamp) {
          // This week
          return date("D, g:i a", $stamp);
       } else {