Remove rawurlencode.

This commit is contained in:
David Molineus
2015-01-15 09:14:49 +01:00
parent 6fbc1a9bf3
commit ae9d70c6c5

View File

@@ -47,7 +47,7 @@ class RequestUrl
'format' => $format != 'geojson' ? $format: null
);
$param = rawurlencode(base64_encode(implode(',', $params)));
$param = base64_encode(implode(',', $params));
return \Config::get('websitePath') . '/' . \Frontend::addToUrl('leaflet=' . $param, false);
}