Skip to content

Commit 856596e

Browse files
committed
UI Tag Input: 45126 remove encoding as it is already encoded through the Tag Input code. Else the code is encoded incorrectly.
https://mantis.ilias.de/view.php?id=45126
1 parent 506a217 commit 856596e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/UI/Implementation/Component/Input/Field/Renderer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ protected function renderTagField(F\Tag $component): string
373373
if ($value) {
374374
$value = array_map(
375375
function ($v) {
376-
return ['value' => urlencode($this->convertSpecialCharacters($v)), 'display' => $v];
376+
return ['value' => urlencode($v), 'display' => $v];
377377
},
378378
$value
379379
);

0 commit comments

Comments
 (0)