- changed createInputParam(): value is not form-encoded anymore, this is done in renderInput* if necessary.
This commit is contained in:
parent
6b4665cf38
commit
5dc112e6b2
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue