Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #3 from magjac/master
Corrected string index out of range (JENKINS-25466)
  • Loading branch information
deruyter committed Nov 7, 2014
2 parents 7b3bb07 + f8f9096 commit eb92f7b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -14,7 +14,7 @@
${b.fieldValue}
</j:if>

<j:if test="${(b.href != null) &amp;&amp; (b.href.length() > 6) &amp;&amp; (b.href.substring(0,7) != 'http://') &amp;&amp; (b.href.substring(0,8) != 'https://')}" >
<j:if test="${(b.href != null) &amp;&amp; (b.href.length() > 6) &amp;&amp; (b.href.substring(0,7) != 'http://') &amp;&amp; (b.href.length() > 7) &amp;&amp; (b.href.substring(0,8) != 'https://')}" >
<a href="${buildn}${b.href}">${b.fieldValue}</a>
</j:if>
</span>
Expand Down

0 comments on commit eb92f7b

Please sign in to comment.