updated toto... and made "now playing" bold.

This commit is contained in:
2018-12-05 21:41:34 -05:00
parent 2e6a3c65f3
commit 5b86865bf1
2 changed files with 2 additions and 1 deletions

View File

@@ -86,7 +86,7 @@ foreach ($games as $key => $value) {
echo "<div class=\"gameinfoline\"><div class=\"gameinfohead\">Last Played</div><div class=\"gameinfoseparator\"></div><div class=\"gameinfodetails\">";
if ($games[$key]["game_played_last"] == -1) {
echo "now playing";
echo "<strong>now playing</strong>";
} else {
echo $ps4->secondsToDate($games[$key]["game_played_last"]);
}