Bug #90753
closedwidget autocomplete url has still wrong masking with &
0%
Description
i still get such an url:
?id=73&type=7076&fluid-widget-id=a82f5243badf6301daf99a055366e145&action=autocomplete&term=test
it does not work because of the "&" masking chars.
TYPO3 9.5.14:
in
sysext/fluid/Resources/Private/Templates/ViewHelpers/Widget/Autocomplete
index.html
has this code:<script type="text/javascript">
jQuery(function() {
jQuery("#{id}").autocomplete(<f:format.raw value="{" />
source: "{f:widget.uri(action:'autocomplete', ajax: 1)}",
minLength: 2
});
});
</script>
must this not be?:
<script type="text/javascript">
jQuery(function() {
jQuery("#{id}").autocomplete(<f:format.raw value="{" />
source: "{f:widget.uri(action:'autocomplete', ajax: 1)->f:format.raw()}",
minLength: 2
});
});
</script>