mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-23 20:32:14 +09:00
setQuery 에서 중복 encodeURI를 막음
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5118 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
d923d7d0cf
commit
c39296309a
1 changed files with 2 additions and 2 deletions
|
|
@ -309,7 +309,7 @@ String.prototype.setQuery = function(key, val) {
|
|||
if( !args.hasOwnProperty(i) ) continue;
|
||||
var arg = args[i];
|
||||
if(!arg.toString().trim()) continue;
|
||||
|
||||
arg = decodeURI(arg);
|
||||
q_list[q_list.length] = i+'='+arg;
|
||||
}
|
||||
uri = uri+"?"+q_list.join("&");
|
||||
|
|
@ -328,7 +328,7 @@ String.prototype.setQuery = function(key, val) {
|
|||
}
|
||||
uri = uri.replace(re,toReplace);
|
||||
}
|
||||
|
||||
|
||||
if(typeof(ssl_actions)!='undefined' && typeof(ssl_actions.length)!='undefined' && uri.getQuery('act')) {
|
||||
var act = uri.getQuery('act');
|
||||
for(i=0;i<ssl_actions.length;i++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue