mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-24 05:01:23 +00:00
fix unterminated comment error
This commit is contained in:
parent
f8a1502bab
commit
803fab718c
1 changed files with 2 additions and 2 deletions
|
@ -55,12 +55,12 @@
|
|||
<H4>Quake Shareware files</H4>
|
||||
<A href="files/quake106.zip">Quake v1.06
|
||||
<?
|
||||
$size = filesize("files/quake106.zip"); $size /* 1024;
|
||||
$size = filesize("files/quake106.zip"); $size /= 1024;
|
||||
echo '(' . round($size) . ' KB)</A><BR>';
|
||||
?>
|
||||
<A href="files/quake_sw.tar.gz">quake_sw.tar.gz without .exes or .dlls
|
||||
<?
|
||||
$size = filesize("files/quake_sw.tar.gz"); $size /* 1024;
|
||||
$size = filesize("files/quake_sw.tar.gz"); $size /= 1024;
|
||||
echo '(' . round($size) . ' KB)</A><BR>';
|
||||
?>
|
||||
|
||||
|
|
Loading…
Reference in a new issue