summaryrefslogtreecommitdiff
path: root/src/KM_util.cpp
diff options
context:
space:
mode:
authormsheby <msheby@cinecert.com>2009-03-28 04:51:23 +0000
committermsheby <>2009-03-28 04:51:23 +0000
commit60480513f2dbf60bd659d86ac8b61c49b24322a7 (patch)
treeb5d6579cda25bf222e2465850f4fcf45e0a5eda1 /src/KM_util.cpp
parent55e9d7f9fd598b1bfb9ee46ea0cfc971f88dd800 (diff)
The XML schema says that the range of timezone offsets is +- 14 hours.
Diffstat (limited to 'src/KM_util.cpp')
-rwxr-xr-xsrc/KM_util.cpp2
1 files changed, 1 insertions, 1 deletions
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