From 3761984a22b58104fff71d6762b1491f7ccd1002 Mon Sep 17 00:00:00 2001 From: alice-blue Date: Tue, 10 Mar 2026 14:07:35 +0000 Subject: [PATCH 1/3] I believe one of these functions got moved to a different file, so there's only one function left in this section. --- www/viewgame | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/www/viewgame b/www/viewgame index c754b1e2..cb4a774e 100644 --- a/www/viewgame +++ b/www/viewgame @@ -1270,8 +1270,6 @@ if ($curuser) { // --------------------PHP Function for displaying median play time-------------------------- - - function displayMedianTime($rounded_median_time, $alltimes) { if ($rounded_median_time < 1) return; // Turn the total minutes into hours and minutes, and then text @@ -1295,7 +1293,7 @@ function displayMedianTime($rounded_median_time, $alltimes) { echo ""; } -//--------------------End of PHP Functions for displaying median time----------------- +//--------------------End of PHP Function for displaying median time----------------- if ($ratingCntTot == 0 && $memberReviewCnt == 0) { displayMedianTime($rounded_median_time, $alltimes); From 589c78acf21a0ddbd9367200d127855ebdf674b0 Mon Sep 17 00:00:00 2001 From: alice-blue Date: Tue, 10 Mar 2026 14:15:22 +0000 Subject: [PATCH 2/3] Avoid implying that the note and the link to the voter's profile are only for new time votes. That implication is left over from when we were switching to public time votes. --- www/viewgame | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/www/viewgame b/www/viewgame index cb4a774e..41a29693 100644 --- a/www/viewgame +++ b/www/viewgame @@ -1283,10 +1283,11 @@ function displayMedianTime($rounded_median_time, $alltimes) { foreach ($alltimes as $t) { $time_vote_text = "" . convertTimeToText($t['time_in_minutes']) . ""; $note = htmlspecialchars($t['time_note']); - // For new time votes, add the note (if present) and link to the user's profile + // Add the time note (if present) if ($note != "") { $time_vote_text .= ": \"$note\""; } + // Link to the voter's profile $time_vote_text .= " — {$t['name']}"; echo "
  • $time_vote_text
  • "; } From 1c2c7a0fdb5db9d0ce1fae3d896aaaab713638ae Mon Sep 17 00:00:00 2001 From: alice-blue Date: Tue, 10 Mar 2026 14:17:56 +0000 Subject: [PATCH 3/3] I don't know why "$historyview" was left off, but if it's left off, it doesn't seem to match the if line, so I'm assuming this is an error. --- www/viewgame | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/viewgame b/www/viewgame index 41a29693..094e6ab0 100644 --- a/www/viewgame +++ b/www/viewgame @@ -1879,7 +1879,7 @@ if ($embargoCnt > 0) // ---------------- end Game Details section ------------ - } // if ($detailView) + } // if ($detailView || $historyView) //------------------------ CROSS-RECOMMENDATIONS --------------------------