From 74ba0be165f7dce8ce94f6e357b9d86fa1c0f2ce Mon Sep 17 00:00:00 2001 From: rjy7 Date: Tue, 18 Jan 2011 04:42:21 +0000 Subject: [PATCH] NIHVIVO-1665 Handle datetime intervals with incomplete data --- .../partials/individual/propStatement-dateTimeInterval.ftl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/productMods/templates/freemarker/body/partials/individual/propStatement-dateTimeInterval.ftl b/productMods/templates/freemarker/body/partials/individual/propStatement-dateTimeInterval.ftl index bb3cd74e..c1254b6a 100644 --- a/productMods/templates/freemarker/body/partials/individual/propStatement-dateTimeInterval.ftl +++ b/productMods/templates/freemarker/body/partials/individual/propStatement-dateTimeInterval.ftl @@ -7,6 +7,5 @@ <#if ! statement.valueStart?? && ! statement.valueEnd??> ${statement.intervalName} (incomplete date/time interval data) <#else> - ${dt.dateTimeIntervalLong(statement.dateTimeStart!, statement.precisionStart!, - statement.dateTimeEnd!, statement.precisionEnd!)} + ${dt.dateTimeIntervalLong("${statement.dateTimeStart!}", "${statement.precisionStart!}", "${statement.dateTimeEnd!}", "${statement.precisionEnd!}")} \ No newline at end of file