Skip to content

Commit

Permalink
[FIXED JENKINS-27387] Suppress expressionAllowed in BindingStep confi…
Browse files Browse the repository at this point in the history
…g; unnecessary and throws exceptions.
  • Loading branch information
jglick committed Mar 1, 2016
1 parent 689655d commit 1aa7d7a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
Expand Up @@ -26,7 +26,7 @@ THE SOFTWARE.
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form" xmlns:st="jelly:stapler" xmlns:c="/lib/credentials">
<st:include page="config-variables.jelly" class="${descriptor.clazz}"/>
<f:entry title="${%Credentials}" field="credentialsId">
<c:select expressionAllowed="true"/>
<c:select expressionAllowed="${expressionAllowed}"/>
</f:entry>
<st:include page="config-details.jelly" class="${descriptor.clazz}" optional="true"/>
</j:jelly>
Expand Up @@ -25,6 +25,7 @@ THE SOFTWARE.

<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
<j:set var="expressionAllowed" value="false"/>
<f:section title="Bindings">
<f:block>
<f:repeatableHeteroProperty field="bindings" hasHeader="true"/>
Expand Down
Expand Up @@ -24,6 +24,7 @@ THE SOFTWARE.
-->
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form">
<j:set var="expressionAllowed" value="true"/>
<f:section title="Bindings">
<f:block>
<f:repeatableHeteroProperty field="bindings" hasHeader="true"/>
Expand Down

0 comments on commit 1aa7d7a

Please sign in to comment.