mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-12 13:32:16 +09:00
파라미터 전달버그 수정 git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7344 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
c5a7a914b1
commit
180a43a104
1 changed files with 1 additions and 1 deletions
|
|
@ -327,7 +327,7 @@ function send_by_form(url, params) {
|
||||||
function arr2obj(arr) {
|
function arr2obj(arr) {
|
||||||
var ret = {};
|
var ret = {};
|
||||||
for(var key in arr) {
|
for(var key in arr) {
|
||||||
if(!arr.hasOwnProperty(key)) ret[key] = arr[key];
|
if(arr.hasOwnProperty(key)) ret[key] = arr[key];
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue