From 739da2976a80294d2be67e0eb8ab160a1eaeb130 Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Fri, 14 Feb 2014 09:19:05 +0000 Subject: [PATCH] handle escaped quotes in hash --- 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 5ea55679..d42a0b25 100644 --- a/source/Ox.UI/js/Core/URL.js +++ b/source/Ox.UI/js/Core/URL.js @@ -728,7 +728,7 @@ Ox.URL = function(options) { hash.anchor = decodeValue(split[0]); } if (split[1]) { - Ox.forEach(Ox.unserialize(split[1], true), function(value, key) { + Ox.forEach(Ox.unserialize(Ox.decodeURIComponent(split[1]), true), function(value, key) { hash.query = hash.query || []; hash.query.push({ key: decodeValue(key),