diff --git a/Htmldocs/release_notes.html b/Htmldocs/release_notes.html
index a6fc9ce3..fffc5dd5 100644
--- a/Htmldocs/release_notes.html
+++ b/Htmldocs/release_notes.html
@@ -16,6 +16,7 @@
The OSCAR Team
- [new] Add support for new settings codes in recently manufactured 700X110 DreamStations.
+ - [new] Add 95% flow limitation to Therapy Efficacy section on Statistics page.
- [fix] Correct SleepStyle machines sometimes identified as Icon machines.
- [fix] Update copyright notices in html files.
- [fix] Correct value display on exact data points, and near session boundaries with drift.
diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp
index 518a74a6..9effb1df 100644
--- a/oscar/statistics.cpp
+++ b/oscar/statistics.cpp
@@ -548,6 +548,7 @@ Statistics::Statistics(QObject *parent) :
rows.push_back(StatisticsRow("Apnea", SC_CPH, MT_CPAP));
rows.push_back(StatisticsRow("ClearAirway", SC_CPH, MT_CPAP));
rows.push_back(StatisticsRow("FlowLimit", SC_CPH, MT_CPAP));
+ rows.push_back(StatisticsRow("FLG", SC_90P, MT_CPAP));
rows.push_back(StatisticsRow("RERA", SC_CPH, MT_CPAP));
rows.push_back(StatisticsRow("SensAwake", SC_CPH, MT_CPAP));
rows.push_back(StatisticsRow("CSR", SC_SPH, MT_CPAP));