Skip to content

Commit

Permalink
[JENKINS-71567] Fix param name including & are not recognized (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wadeck authored Jul 11, 2023
1 parent 65217a4 commit cb857a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<st:adjunct includes="lib.form.select.select"/>
<input type="hidden" name="name" value="${it.name}"/>
<select name="value" class="gitParameterSelect" size="${it.listSize}" style="min-width: 200px; font-family: monospace;" id="gitParameterSelect"
fillUrl="${h.getCurrentDescriptorByNameUrl()}/${it.descriptor.descriptorUrl}/fillValueItems?param=${it.name}" divId="${divId}">
fillUrl="${h.getCurrentDescriptorByNameUrl()}/${it.descriptor.descriptorUrl}/fillValueItems?param=${h.urlEncode(it.name)}" divId="${divId}">
<option value="">${%retrieving.references}</option>
</select>
<j:if test="${it.quickFilterEnabled}">
Expand Down

0 comments on commit cb857a9

Please sign in to comment.