Skip to content

Commit

Permalink
website fully functional after previous pr merge, fix errant parenthe…
Browse files Browse the repository at this point in the history
…sy in index.lphp for downloads section and update the version of cobalt that CI is using to build the website thus resolving a weird html escaping error
  • Loading branch information
samtupy committed Sep 9, 2024
1 parent aece4ab commit 5ea5ded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/downloads/index.lphp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function size2string($bytes) {
// This function prints the information for a given version, again still a bit hacky.
function echo_version($ver) {
echo "<h3>" . $ver . "</h3>\n";
echo "<p>Released on <script>document.write(local_datetime_string(" . (filemtime("nvgt_" . $ver . ".exe")) * 1000) . "));</script>.</p>\n";
echo "<p>Released on <script>document.write(local_datetime_string(" . (filemtime("nvgt_" . $ver . ".exe") * 1000) . "));</script>.</p>\n";
$files = glob("nvgt_" . $ver . "*");
echo "<ul>\n";
foreach($files as $file) {
Expand Down

0 comments on commit 5ea5ded

Please sign in to comment.