Skip to content

Commit

Permalink
Merge pull request #4 from lbordowitz/loadConfigFix
Browse files Browse the repository at this point in the history
[JENKINS-30711] Fixed incorrect reference to parserClassName in options.
  • Loading branch information
lbordowitz committed Nov 20, 2015
2 parents 6a3fdf5 + 6e5ce09 commit cb6b0ae
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 cb6b0ae

Please sign in to comment.