Reverting r10130 to avoid double decoding (see #1704).

git-svn-id: http://svn.openlayers.org/trunk/openlayers@10132 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2010-03-20 02:48:55 +00:00
parent d324395de6
commit fcfb22920b

View File

@@ -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) {