use Ox.decodeURI/Ox.decodeURIComponent

This commit is contained in:
rolux 2013-08-14 18:54:06 +00:00
commit 1e10fb5967
4 changed files with 4 additions and 4 deletions

View file

@ -274,7 +274,7 @@ Ox.load('UI', {
options;
vars.forEach(function(v) {
var kv = v.split('='), k = kv[0], v = kv[1];
query[k] = decodeURIComponent(v);
query[k] = Ox.decodeURIComponent(v);
if (query[k] == 'true') {
query[k] = true;
} else if (query[k] == 'false') {