Commit bd80edef authored by Sven Franck's avatar Sven Franck

fixed missing URI encoding on controlgroup links

parent bad40a1d
......@@ -4105,7 +4105,7 @@
if (spec.item_identifier) {
if (element.direct.href) {
element.direct.href =
element.direct.href.replace("__id__", spec.item_identifier);
element.direct.href.replace("__id__", window.encodeURIComponent(spec.item_identifier));
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment