서버측에서 redirect_url을 지정해 주었을때 URL에 &가 있을 경우 & 로 바꿔서 페이지 이동하도록 수정

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6632 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2009-06-22 05:29:46 +00:00
parent 977435313c
commit ed30f86aaa

View file

@ -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;
}