From 7a280607c299935cccae7dc038fc5cecb04198d0 Mon Sep 17 00:00:00 2001 From: IgorA100 Date: Mon, 17 Mar 2025 13:52:24 +0300 Subject: [PATCH] Fix: Restored missing closing tag in fn "getStatsTableHTML" (functions.php) --- web/skins/classic/includes/functions.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/skins/classic/includes/functions.php b/web/skins/classic/includes/functions.php index 4eda931ba..ad6306f60 100644 --- a/web/skins/classic/includes/functions.php +++ b/web/skins/classic/includes/functions.php @@ -960,9 +960,11 @@ function getStatsTableHTML($eid, $fid, $row='') { $result .= '' .validHtmlStr($stat['MinX'].",".$stat['MinY']."-".$stat['MaxX'].",".$stat['MaxY']). ''.PHP_EOL; $result .= '' .$stat['Score']. ''.PHP_EOL; + $result .= ''.PHP_EOL; } } else { $result .= ''.PHP_EOL; + //IMPORTANT! There is a problem with Bootstrap here. The class is being moved from and "colspan" is not being applied $result .= '' .translate('NoStatisticsRecorded'). ''.PHP_EOL; $result .= ''.PHP_EOL; }