diff --git a/dependency-check-core/src/main/resources/templates/HtmlReport.vsl b/dependency-check-core/src/main/resources/templates/HtmlReport.vsl
index 8283a443a..b065e8a58 100644
--- a/dependency-check-core/src/main/resources/templates/HtmlReport.vsl
+++ b/dependency-check-core/src/main/resources/templates/HtmlReport.vsl
@@ -632,7 +632,7 @@ Getting Help:
-
$enc.html($dependency.DisplayFileName) |
+ $enc.html($dependency.DisplayFileName) |
#set($mavenlink="")
#set($cpeIdCount=0)
#set($cpeIdConf="")
@@ -673,9 +673,9 @@ Getting Help:
#else
- #if( $mavenlink.url )
+ | #if( $mavenlink.url )
##yes, we are HTML Encoding the href. This is okay. We can't URL encode as we have to trust the analyzer here...
- $enc.html($mavenlink.value)
+ $enc.html($mavenlink.value) ✓
#elseif ($mavenlink.value)
$enc.html($mavenlink.value)
#end
@@ -762,10 +762,10 @@ Getting Help: SHA1: $enc.html($related.Sha1sum)
MD5: $enc.html($related.Md5sum)
#foreach($id in $related.getIdentifiers())
- #if ($id.type=="maven")
- #if( $id.url )
+ #if( $id.url )
+ #if ($id.type=="maven")
##yes, we are HTML Encoding the href. this is okay. We can't URL encode as we have to trust the analyzer here...
- $enc.html($id.type): $enc.html($id.value)
+ $enc.html($id.type): $enc.html($id.value) ✓
#else
$enc.html($id.type): $enc.html($id.value)
#end
@@ -800,8 +800,12 @@ Getting Help: $enc.html($id.type): $enc.html($id.value) ✓
+ #else
$enc.html($id.type): $enc.html($id.value)
+ #end
#else
$enc.html($id.type): $enc.html($id.value)
#end
@@ -949,8 +953,12 @@ Getting Help:
#foreach($id in $dependency.getSuppressedIdentifiers())
#if( $id.url )
+ #if($id.type=="maven")
##yes, we are HTML Encoding the href. this is okay. We can't URL encode as we have to trust the analyzer here...
+ $enc.html($id.type): $enc.html($id.value) ✓ suppressed
+ #else
$enc.html($id.type): $enc.html($id.value) suppressed
+ #end
#else
$enc.html($id.type): $enc.html($id.value) suppressed
#end
|