From 4ab7a24075d6d1416a594d6670eac81a673d61b4 Mon Sep 17 00:00:00 2001 From: rolux Date: Tue, 18 Feb 2014 06:05:17 +0000 Subject: [PATCH] Ox.URL: encode '?' in item ids --- 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 c82451b2..098b198a 100644 --- a/source/Ox.UI/js/Core/URL.js +++ b/source/Ox.UI/js/Core/URL.js @@ -580,7 +580,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);