uggghhhh. timezone info, which is in the database, dissappears by the time it
authorjohn <john>
Mon, 15 Apr 2002 21:07:23 +0000 (21:07 +0000)
committerjohn <john>
Mon, 15 Apr 2002 21:07:23 +0000 (21:07 +0000)
becomes entity.webdb_create

until this is tracked down, no timezones on dates.
not an ideal solution.

source/mir/misc/StringUtil.java

index f0d4017..a65c710 100755 (executable)
@@ -184,9 +184,11 @@ public final class StringUtil {
                        returnDate.append(":");
                        returnDate.append(date.substring(14,16));
                        returnDate.append(":");
-                       returnDate.append(date.substring(17,22));
-                       returnDate.append(date.substring(20,22));
-                       returnDate.append(":00");
+                       returnDate.append(date.substring(17,19));
+                       //removed until someone tells me 
+                       //where the timezone goes -john
+                       //returnDate.append(date.substring(17,22));
+                       //returnDate.append(":00");
                }
                return returnDate.toString();
        }