Skip to content

Commit

Permalink
Change "Tested on YYYY-MM-DD" to "Updated on YYYY-MM-DD" (#14)
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
FlexBy420 authored Mar 3, 2024
1 parent bb37649 commit cf646d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion classes/class.Compat.php
Original file line number Diff line number Diff line change
Expand Up @@ -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());

Expand Down

0 comments on commit cf646d8

Please sign in to comment.