From 60480513f2dbf60bd659d86ac8b61c49b24322a7 Mon Sep 17 00:00:00 2001 From: msheby Date: Sat, 28 Mar 2009 04:51:23 +0000 Subject: The XML schema says that the range of timezone offsets is +- 14 hours. --- src/KM_util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/KM_util.cpp') diff --git a/src/KM_util.cpp b/src/KM_util.cpp index 391394c..f0a779a 100755 --- a/src/KM_util.cpp +++ b/src/KM_util.cpp @@ -1026,7 +1026,7 @@ Kumu::Timestamp::DecodeString(const char* datestr) if (datestr[19] == '-') TZ_mm = -TZ_mm; - if ((TZ_mm > 14 * 60) || (TZ_mm < -12 * 60)) + if ((TZ_mm > 14 * 60) || (TZ_mm < -14 * 60)) return false; else -- cgit v1.2.3