changeset 2175:d90cbba6299b

Hotfix. date time node in results returned function reference for minutes.
author Nicholas Jillings <nickjillings@users.noreply.github.com>
date Tue, 22 Mar 2016 11:31:51 +0000
parents 931d3a88e552
children 76b11b865550
files core.js
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/core.js	Tue Mar 22 11:21:45 2016 +0000
+++ b/core.js	Tue Mar 22 11:31:51 2016 +0000
@@ -2464,7 +2464,7 @@
         date.setAttribute('month',dateTime.getMonth()+1);
         date.setAttribute('day',dateTime.getDate());
         time.setAttribute('hour',dateTime.getHours());
-        time.setAttribute('minute',dateTime.getMinutes);
+        time.setAttribute('minute',dateTime.getMinutes());
         time.setAttribute('secs',dateTime.getSeconds());
         
         hold.appendChild(date);