- changed createInputParam(): value is not form-encoded anymore, this is done in renderInput* if necessary.

This commit is contained in:
Robert Gaggl 2003-02-04 12:18:37 +00:00
parent 6b4665cf38
commit 5dc112e6b2

View file

@ -23,7 +23,7 @@ function createInputParam(propName, param) {
inputParam.name = propName;
for (var i in param)
inputParam[i] = param[i];
inputParam.value = encodeForm(this[propName]);
inputParam.value = this[propName];
return (inputParam);
}