파라미터 전달버그 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7344 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
taggon 2010-03-16 03:17:43 +00:00
parent c5a7a914b1
commit 180a43a104

View file

@ -327,7 +327,7 @@ function send_by_form(url, params) {
function arr2obj(arr) {
var ret = {};
for(var key in arr) {
if(!arr.hasOwnProperty(key)) ret[key] = arr[key];
if(arr.hasOwnProperty(key)) ret[key] = arr[key];
}
return ret;
}