#if ($dependency.description)
Description: $enc.html($dependency.description)
@@ -582,7 +582,7 @@ arising out of or in connection with the use of this tool, the analysis performe
#foreach($related in $dependency.getRelatedDependencies())
- - $enc.html($related.FileName)
+
- $enc.html($related.DisplayFileName)
- File Path: $enc.html($related.FilePath)
- SHA1: $enc.html($related.Sha1sum)
@@ -699,7 +699,7 @@ arising out of or in connection with the use of this tool, the analysis performe
#foreach($dependency in $dependencies)
#if ($dependency.getSuppressedIdentifiers().size()>0 || $dependency.getSuppressedVulnerabilities().size()>0)
#set($lnkcnt=$lnkcnt+1)
- $enc.html($dependency.FileName)
+ $enc.html($dependency.DisplayFileName)
#if ($dependency.description)
Description: $enc.html($dependency.description)
@@ -732,7 +732,7 @@ arising out of or in connection with the use of this tool, the analysis performe
#foreach($related in $dependency.getRelatedDependencies())
- - $enc.html($related.FileName)
+
- $enc.html($related.DisplayFileName)
- File Path: $enc.html($related.FilePath)
- SHA1: $enc.html($related.Sha1sum)
diff --git a/dependency-check-core/src/main/resources/templates/VulnerabilityReport.vsl b/dependency-check-core/src/main/resources/templates/VulnerabilityReport.vsl
index c381d5d19..44ee05e77 100644
--- a/dependency-check-core/src/main/resources/templates/VulnerabilityReport.vsl
+++ b/dependency-check-core/src/main/resources/templates/VulnerabilityReport.vsl
@@ -222,10 +222,10 @@ arising out of or in connection with the use of this tool, the analysis performe
($vuln.cvssScore)
#set($cnt=$cnt+1)
#if($dependency.getRelatedDependencies().size()>0)#end
- $enc.html($dependency.FileName)
+ $enc.html($dependency.DisplayFileName)
#if($dependency.getRelatedDependencies().size()>0) #end
#foreach($related in $dependency.getRelatedDependencies())
- $enc.html($related.FileName)
+ $enc.html($related.DisplayFileName)
#end
#if($dependency.getRelatedDependencies().size()>0)
diff --git a/dependency-check-core/src/main/resources/templates/XmlReport.vsl b/dependency-check-core/src/main/resources/templates/XmlReport.vsl
index 55d0db8f1..7a7049a0a 100644
--- a/dependency-check-core/src/main/resources/templates/XmlReport.vsl
+++ b/dependency-check-core/src/main/resources/templates/XmlReport.vsl
@@ -36,7 +36,7 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved.
#foreach($dependency in $dependencies)
- $enc.xml($dependency.FileName)
+ $enc.xml($dependency.DisplayFileName)
$enc.xml($dependency.FilePath)
$enc.xml($dependency.Md5sum)
$enc.xml($dependency.Sha1sum)
|