From fcfb22920bef8e4cd72c85926f03cfa2a2b2a7ba Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Sat, 20 Mar 2010 02:48:55 +0000 Subject: [PATCH] Reverting r10130 to avoid double decoding (see #1704). git-svn-id: http://svn.openlayers.org/trunk/openlayers@10132 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OpenLayers/Util.js b/lib/OpenLayers/Util.js index 6ea557119b..f4716ffb7d 100644 --- a/lib/OpenLayers/Util.js +++ b/lib/OpenLayers/Util.js @@ -980,7 +980,7 @@ OpenLayers.Util.getParameters = function(url) { var value = keyValue[1] || ''; //empty string if no value //decode individual values - value = decodeURIComponent(unescape(value)).split(","); + value = decodeURIComponent(value).split(","); //if there's only one value, do not return as array if (value.length == 1) {