From cf646d82edae2f9e35d513f9b968c73dc7f8b59e Mon Sep 17 00:00:00 2001 From: FlexBy420 <68403300+FlexBy420@users.noreply.github.com> Date: Sun, 3 Mar 2024 13:42:23 +0100 Subject: [PATCH] Change "Tested on YYYY-MM-DD" to "Updated on YYYY-MM-DD" (#14) * Change "Tested on YYYY-MM-DD" to "Updated on YYYY-MM-DD" Some users may think that it was the last date when the game was tested while in reality it's when the game status last changed. --- classes/class.Compat.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/class.Compat.php b/classes/class.Compat.php index d6a19e2..cce041a 100644 --- a/classes/class.Compat.php +++ b/classes/class.Compat.php @@ -436,7 +436,7 @@ public static function printTable() : void // Cell 4: Last Test $html_div_cell = new HTMLDiv("compat-table-cell compat-table-cell-updated"); - $html_a_date = new HTMLA("?d=".str_replace('-', '', $game->date), "Tested on {$game->date}", $game->date); + $html_a_date = new HTMLA("?d=".str_replace('-', '', $game->date), "Updated on {$game->date}", $game->date); $html_div_cell->add_content($html_a_date->to_string());