From 610720254d796426686d71febe2f1784e032e552 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Sat, 17 Aug 2013 15:48:01 +0200 Subject: [PATCH] also replace %20 in item id 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 a860693f..e32b0db7 100644 --- a/source/Ox.UI/js/Core/URL.js +++ b/source/Ox.UI/js/Core/URL.js @@ -532,7 +532,7 @@ Ox.URL = function(options) { parts.push(state.type); } if (state.item) { - parts.push(state.item); + parts.push(encodeValue(state.item)); } if (state.type && self.options.views[state.type][ state.item ? 'item' : 'list'