From 7aafed8d254d04094899267ab7a9a1bca5cd7308 Mon Sep 17 00:00:00 2001 From: rolux Date: Mon, 18 Feb 2013 16:26:20 +0530 Subject: [PATCH] In Ox.URL, urldecode '<' and '>' --- source/Ox.UI/js/Core/URL.js | 1 + 1 file changed, 1 insertion(+) diff --git a/source/Ox.UI/js/Core/URL.js b/source/Ox.UI/js/Core/URL.js index 73336c10..9c4cfab4 100644 --- a/source/Ox.UI/js/Core/URL.js +++ b/source/Ox.UI/js/Core/URL.js @@ -554,6 +554,7 @@ Ox.URL = function(options) { var condition = {}, operators = ['!==', '==', '!=', '=', '!<', '<', '!>', '>'], split; + str = str.replace(/%3C/g, '<').replace(/%3E/g, '>'); Ox.forEach(operators, function(operator) { if (str.indexOf(operator) > -1) { split = str.split(operator);