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);