Skip to content

Commit

Permalink
Fixed issue #18590: Filenames containing an apostrophe (') cause uplo…
Browse files Browse the repository at this point in the history
…aded file-list to unlist upon Resume later or Next then Previous (#2862)

Co-authored-by: lapiudevgit <devgit@lapiu.biz>
  • Loading branch information
gabrieljenik and lapiudevgit committed Feb 10, 2023
1 parent c83b1c6 commit ff19cad
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -25,7 +25,7 @@
<span class='fa fa-upload'></span>&nbsp;{{ uploadButtonLabel }}
</a>
</div>
<input type='hidden' id='java{{ fileid }}' name='{{ fileid }}' value='{{ value }}' />
<input type='hidden' id='java{{ fileid }}' name='{{ fileid }}' value='{{ value|escape("html_attr") }}' />
<input type='hidden' id='java{{ fileid }}_filecount' name='{{ fileid }}_filecount' value="{{ filecountvalue }}" />
<div id='{{ fileid }}_uploadedfiles' class="hidden">
<table width="100%" class="question uploadedfiles">
Expand Down

0 comments on commit ff19cad

Please sign in to comment.