mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-22 09:09:31 +01:00
fixed typo that prevented some information from being displayed
Former-commit-id: 59c9c97fb478d52782afad114a0257fc045e3090
This commit is contained in:
@@ -314,8 +314,12 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved.
|
|||||||
#end
|
#end
|
||||||
<p>
|
<p>
|
||||||
#if ($dependency.license)
|
#if ($dependency.license)
|
||||||
|
#if ($dependency.license.startsWith("http://"))
|
||||||
|
<b>License:</b><pre class="indent"><a href="$esc.html($dependency.license)">$esc.html($dependency.license)</a></pre>
|
||||||
|
#else
|
||||||
<b>License:</b><pre class="indent">$esc.html($dependency.license)</pre>
|
<b>License:</b><pre class="indent">$esc.html($dependency.license)</pre>
|
||||||
#end
|
#end
|
||||||
|
#end
|
||||||
<b>File Path:</b> $esc.html($dependency.FilePath)<br/>
|
<b>File Path:</b> $esc.html($dependency.FilePath)<br/>
|
||||||
<b>MD5:</b> $esc.html($dependency.Md5sum)<br/>
|
<b>MD5:</b> $esc.html($dependency.Md5sum)<br/>
|
||||||
<b>SHA1:</b> $esc.html($dependency.Sha1sum)
|
<b>SHA1:</b> $esc.html($dependency.Sha1sum)
|
||||||
@@ -394,7 +398,7 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved.
|
|||||||
#foreach($id in $dependency.getIdentifiers())
|
#foreach($id in $dependency.getIdentifiers())
|
||||||
##yes, we are HTML Encoding the href. this is okay. We can't URL encode as we have to trust the analyzer here...
|
##yes, we are HTML Encoding the href. this is okay. We can't URL encode as we have to trust the analyzer here...
|
||||||
<li><b>$esc.html($id.type):</b> <a href="$esc.html($id.url)" target="_blank">$esc.html($id.value)</a>
|
<li><b>$esc.html($id.type):</b> <a href="$esc.html($id.url)" target="_blank">$esc.html($id.value)</a>
|
||||||
#if( $id.descrription )
|
#if( $id.description )
|
||||||
<br/>$esc.html($id.description)
|
<br/>$esc.html($id.description)
|
||||||
#end
|
#end
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
Reference in New Issue
Block a user