From 0c60ca25dab2042fc61a76857affe91591530339 Mon Sep 17 00:00:00 2001 From: rlx <0x0073@0x2620.org> Date: Tue, 27 Aug 2013 15:02:23 +0000 Subject: [PATCH] Ox.URL: fix a bug when decoding multiple tabs in url --- 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 13aec1f3..f4a896fa 100644 --- a/source/Ox.UI/js/Core/URL.js +++ b/source/Ox.UI/js/Core/URL.js @@ -563,7 +563,7 @@ Ox.URL = function(options) { } function decodeValue(value) { - return Ox.decodeURIComponent(value).replace(/_/g, ' ').replace(Ox.char(9), '_'); + return Ox.decodeURIComponent(value).replace(/_/g, ' ').replace(/\t/g, '_'); } function encodeValue(value, isItem) {