From: john Date: Mon, 15 Apr 2002 21:07:23 +0000 (+0000) Subject: uggghhhh. timezone info, which is in the database, dissappears by the time it X-Git-Tag: prexmlproducerconfig~109 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=89cd93f1ae7dd083c0a8e8fe25fd544fd529209c;p=mir.git uggghhhh. timezone info, which is in the database, dissappears by the time it becomes entity.webdb_create until this is tracked down, no timezones on dates. not an ideal solution. --- diff --git a/source/mir/misc/StringUtil.java b/source/mir/misc/StringUtil.java index f0d40179..a65c7109 100755 --- a/source/mir/misc/StringUtil.java +++ b/source/mir/misc/StringUtil.java @@ -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(); }