diff --git a/source/masterserver/scripts/desktop_notifications.js b/source/masterserver/scripts/desktop_notifications.js index bd0ec704..c69afc54 100644 --- a/source/masterserver/scripts/desktop_notifications.js +++ b/source/masterserver/scripts/desktop_notifications.js @@ -111,7 +111,7 @@ function timedRequest() " IPv4 address\n" + " Game protocol port\n" + " Platform\n" + - " Build date\n" + + " Play date\n" + "\n"; // Loop through all json objects @@ -215,8 +215,8 @@ function timedRequest() /// Platform table += "" + escapeHtml(jsonText[i].platform) + ""; - /// Binary compilation date - table += "" + escapeHtml(jsonText[i].binaryCompileDate) + ""; + /// Play date + table += "" + escapeHtml(jsonText[i].lasttime) + ""; table += ""; diff --git a/source/masterserver/showServers.php b/source/masterserver/showServers.php index d924b3d2..7c712800 100644 --- a/source/masterserver/showServers.php +++ b/source/masterserver/showServers.php @@ -184,7 +184,7 @@ // platform printf( "\t\t\t\t%s%s", htmlspecialchars( $server['platform'], ENT_QUOTES ), PHP_EOL ); - // binaryCompileDate + // game play time printf( "\t\t\t\t%s%s", htmlspecialchars( $server['lasttime'], ENT_QUOTES ), PHP_EOL ); echo "\t\t\t" . '' . PHP_EOL;