diff --git a/Htmldocs/release_notes.html b/Htmldocs/release_notes.html
index fd29153b..54222aa1 100644
--- a/Htmldocs/release_notes.html
+++ b/Htmldocs/release_notes.html
@@ -11,6 +11,13 @@
This page in other languages:
http://www.apneaboard.com/wiki/index.php/OSCAR_Release_Notes
+ Changes and fixes in OSCAR v1.3.1-beta-?
+
Portions of OSCAR are © 2019-2022 by
+ The OSCAR Team
+
+ - [fix] Add footer to first page of printed Statistics report.
+
+
Changes and fixes in OSCAR v1.3.1-beta-2
Portions of OSCAR are © 2019-2022 by
The OSCAR Team
diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp
index 0b904e6b..fd680bb1 100644
--- a/oscar/statistics.cpp
+++ b/oscar/statistics.cpp
@@ -1360,7 +1360,7 @@ void Statistics::printReport(QWidget * parent) {
qDebug() << "Enlarged printer font" << font << "printer default font set" << doc.defaultFont();
- doc.setHtml(htmlReportHeaderPrint + htmlUsage + htmlMachineSettings + htmlMachines + htmlReportFooter);
+ doc.setHtml(htmlReportHeaderPrint + htmlUsage + htmlReportFooter + htmlMachineSettings + htmlMachines + htmlReportFooter);
// Dump HTML for use with HTML4 validator
// QString html = htmlReportHeaderPrint + htmlUsage + htmlMachineSettings + htmlMachines + htmlReportFooter;