From 221b39ce7bc6e83ae37f1a5ac91749ace1ad55e1 Mon Sep 17 00:00:00 2001 From: Joe Germuska Date: Wed, 19 Nov 2014 16:29:33 +0000 Subject: [PATCH] initialize date differently. closes #718 --- source/js/Core/Core/VMM.Date.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/js/Core/Core/VMM.Date.js b/source/js/Core/Core/VMM.Date.js index 6ec87c2..d40de59 100644 --- a/source/js/Core/Core/VMM.Date.js +++ b/source/js/Core/Core/VMM.Date.js @@ -72,8 +72,7 @@ if(typeof VMM != 'undefined' && typeof VMM.Date == 'undefined') { trace("DEBUG THIS, ITs A DATE"); date = d; } else { - date = new Date(0, 0, 1, 0, 0, 0, 0); - + date = new Date(0); if ( d.match(/,/gi) ) { date_array = d.split(","); for(var i = 0; i < date_array.length; i++) {