From 4c390cc236c53a426d1d4f525d4dfc046be7a090 Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Mon, 26 Aug 2013 17:15:56 +0000 Subject: [PATCH] cosmetic changes --- source/Ox.UI/js/Core/URL.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Ox.UI/js/Core/URL.js b/source/Ox.UI/js/Core/URL.js index 7dc2bdd0..13aec1f3 100644 --- a/source/Ox.UI/js/Core/URL.js +++ b/source/Ox.UI/js/Core/URL.js @@ -567,7 +567,7 @@ Ox.URL = function(options) { } function encodeValue(value, isItem) { - var chars = isItem ? '/#%' : '=*&|()#%', + var chars = isItem ? '/#%' : '*=&|()#%', ret = ''; value.toString().split('').forEach(function(char) { var index = chars.indexOf(char);