From 7c00f42d5c5e3ca29ad464c891c664d4a4fc9626 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:trunk[170] --- js/wizardhelper.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/wizardhelper.js b/js/wizardhelper.js index 3a3d870d88..c42beded44 100644 --- a/js/wizardhelper.js +++ b/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;