Error fixed in the url generation for the filter event index popover

pull/304/merge
iglocska 2014-09-16 14:52:03 +02:00
parent 5f69830d0b
commit 2fe729535d
1 changed files with 2 additions and 2 deletions

View File

@ -966,11 +966,11 @@ function indexCreateFilters() {
if (filterContext == 'event') {
if (filtering.date.from) {
if (text != "") text += "/";
text += "/searchDatefrom:" + filtering.date.from;
text += "searchDatefrom:" + filtering.date.from;
}
if (filtering.date.until) {
if (text != "") text += "/";
text += "/searchDateuntil:" + filtering.date.until;
text += "searchDateuntil:" + filtering.date.until;
}
return baseurl + '/events/index/' + text;
} else {