From b80cee86044d6b55da73a24744f18b1ce54ef8f2 Mon Sep 17 00:00:00 2001 From: Leonardo Bartoli Date: Tue, 17 Oct 2023 19:42:48 +0200 Subject: [PATCH] Fixed mispelled variables --- www/experiments/common.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/experiments/common.inc b/www/experiments/common.inc index 1849fb0eea..aba4f5611e 100644 --- a/www/experiments/common.inc +++ b/www/experiments/common.inc @@ -232,8 +232,8 @@ foreach ($assessment as $key => $cat) { $summary .= " It had $num_violations accessibility issues, "; if ($num_critical > 0) { $summary .= " $num_critical critical"; - } elseif ($$num_serious > 0) { - $summary .= "$num_critical serious"; + } elseif ($num_serious > 0) { + $summary .= "$num_serious serious"; } else { $summary .= " none serious"; }