Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWayne Beaton2017-11-27 17:55:21 +0000
committerWayne Beaton2017-11-27 17:55:21 +0000
commit6afeac2f8c9113e3bfce31a4fd0cd6114a801c97 (patch)
tree45a8ae3ac7377976052e08b18742b0f18b234b1e
parent9ba424264563795555587ea4142d1a032fda268d (diff)
downloadprojects-6afeac2f8c9113e3bfce31a4fd0cd6114a801c97.tar.gz
projects-6afeac2f8c9113e3bfce31a4fd0cd6114a801c97.tar.xz
projects-6afeac2f8c9113e3bfce31a4fd0cd6114a801c97.zip
[527803] Legal Documentation Generator: SPDX prefix should be used
-rw-r--r--tools/about.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/about.php b/tools/about.php
index b8fad8d3..a08d5092 100644
--- a/tools/about.php
+++ b/tools/about.php
@@ -71,8 +71,8 @@ function renderNoticeFile($id, $width=80) {
echo "\n== Declared Project Licenses\n\n";
echo wordwrap($project->getLicensesStatement(), $width);
- echo "\n";
- echo wordwrap($project->getSPDXLicenseExpression(), $width);
+ echo "\n\n";
+ echo wordwrap("SPDX-License-Identifier: " . $project->getSPDXLicenseExpression(), $width);
echo "\n";
if ($repositories = $project->getSourceRepositories()) {

Back to the top