Remove dependency of url builder.

This commit is contained in:
David Molineus
2015-01-14 17:59:18 +01:00
parent d54b5ddc3e
commit 922d02adff
3 changed files with 4 additions and 4 deletions

View File

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