From 4acb744f77a3828efdd26d08f6ffd9517302b3a8 Mon Sep 17 00:00:00 2001 From: yscumc Date: Thu, 28 Aug 2014 16:22:57 -0400 Subject: [PATCH] Update document_properties.js Fix for minutes tz calculation --- web/document_properties.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/document_properties.js b/web/document_properties.js index f14aa3a05b3e0..c718cc57547dc 100644 --- a/web/document_properties.js +++ b/web/document_properties.js @@ -184,7 +184,7 @@ var DocumentProperties = { minutes += offsetMinutes; } else if (utRel === '+') { hours -= offsetHours; - minutes += offsetMinutes; + minutes -= offsetMinutes; } // Return the new date format from the user's locale.