From 0bbe615664dda6780e0afd89a0e4ae2b5360b3fe Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Wed, 16 Sep 2009 16:07:28 +0000 Subject: [PATCH] - Fix for Internet Explorer: Arrays must be properly closed! SVN:code[170] --- trunk/js/wizardhelper.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/trunk/js/wizardhelper.js b/trunk/js/wizardhelper.js index 3a3d870d8..c42beded4 100644 --- a/trunk/js/wizardhelper.js +++ b/trunk/js/wizardhelper.js @@ -1,5 +1,4 @@ // Wizard Helper JavaScript class to communicate with the WizardHelper PHP class - function WizardHelper(sClass) { this.m_oData = { 'm_sClass' : '', @@ -9,7 +8,7 @@ function WizardHelper(sClass) 'm_aAllowedValuesRequested': [], 'm_aDefaultValue': [], 'm_aAllowedValues': [], - 'm_iFieldsCount' : 0, + 'm_iFieldsCount' : 0 }; this.m_oData.m_sClass = sClass;