Browse Source

- Fix for Internet Explorer: Arrays must be properly closed!

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@170 a333f486-631f-4898-b8df-5754b55c2be0
dflaven 15 years ago
parent
commit
729d1ced58
1 changed files with 1 additions and 2 deletions
  1. 1 2
      js/wizardhelper.js

+ 1 - 2
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;