Skip to content

Commit

Permalink
[JENKINS-30711] Fixed incorrect reference to parserClassName in options.
Browse files Browse the repository at this point in the history
  • Loading branch information
Larry Bordowitz committed Nov 20, 2015
1 parent 853aaab commit 6e5ce09
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -31,7 +31,7 @@ THE SOFTWARE.
<f:entry name="parserClassName" title="Result Format" field="parserClassName">
<select name="parserClassName">
<j:forEach var="parser" items="${parsers}">
<f:option value="${parser.class.name}" selected="${parser.class.name==it.parserClassName}">${parser.displayName}</f:option>
<f:option value="${parser.class.name}" selected="${parser.class.name==instance.parserClassName}">${parser.displayName}</f:option>
</j:forEach>
</select>
</f:entry>
Expand Down

0 comments on commit 6e5ce09

Please sign in to comment.