Add missing ? for requests with params.

This commit is contained in:
David Molineus
2015-01-28 16:05:55 +01:00
parent abbc1d8b0e
commit fdc427d92b
2 changed files with 2 additions and 2 deletions

View File

@@ -281,7 +281,7 @@ L.Contao = L.Class.extend({
params[params.length] = [key, value].join('=');
}
value = document.location.pathname + params.join('&');
value = document.location.pathname + '?' + params.join('&');
}
if (map) {