mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-12 23:12:13 +09:00
서버측에서 redirect_url을 지정해 주었을때 URL에 &가 있을 경우 & 로 바꿔서 페이지 이동하도록 수정
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6632 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
977435313c
commit
ed30f86aaa
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ function xml_response_filter(oXml, callback_func, response_tags, callback_func_a
|
|||
}
|
||||
|
||||
if(ret_obj["redirect_url"]) {
|
||||
location.href=ret_obj["redirect_url"];
|
||||
location.href=ret_obj["redirect_url"].replace(/&/g,'&');
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue