Kaynağa Gözat

Merge pull request #3037 from fancyweb/autocomplete-url-escape

Escape sonata_type_model_autocomplete url in template. Issue #3011.
Andrej Hudec 10 yıl önce
ebeveyn
işleme
6b31c26179

+ 1 - 1
Resources/views/Form/Type/sonata_type_model_autocomplete.html.twig

@@ -42,7 +42,7 @@ file that was distributed with this source code.
                 containerCssClass: '{{ container_css_class ~ ' form-control' }}',
                 dropdownCssClass: '{{ dropdown_css_class }}',
                 ajax: {
-                    url:  '{{ url ?: path(route.name, route.parameters|default([])) }}',
+                    url:  '{{ url ?: path(route.name, route.parameters|default([]))|e('js') }}',
                     dataType: 'json',
                     quietMillis: 100,
                     data: function (term, page) { // page is the one-based page number tracked by Select2