From 08256a078f96d4af6c9037f0f090d59188cf2c2e Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Wed, 14 Aug 2013 19:03:40 +0000 Subject: [PATCH] revert r2999 (no need to encode '%' if we can properly decode it) --- 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 a03dfa6a..97e4fe77 100644 --- a/source/Ox.UI/js/Core/URL.js +++ b/source/Ox.UI/js/Core/URL.js @@ -568,7 +568,7 @@ Ox.URL = function(options) { function encodeValue(value) { // var chars = '/&|()=*:'; - var chars = '&|()=*%', + var chars = '&|()=*', ret = ''; value.toString().split('').forEach(function(char) { var index = chars.indexOf(char);