basic "get latest file" php script.

This commit is contained in:
alzeih
2010-04-25 15:24:48 +12:00
parent a7f91da6c8
commit 67901b2e64
2 changed files with 5 additions and 1 deletions

View File

@@ -22,7 +22,7 @@
<body>
<div id="main">
<div id="links">
<a id="download" href="http://open-ra.org/releases/windows/"></a>
<a id="download" href="http://open-ra.org/releases/windows/latest.php"></a>
<a id="contrib" href="http://github.com/chrisforbes/OpenRA"></a>
<a id="discuss" href="irc://irc.freenode.org/openra"></a>
</div>

View File

@@ -0,0 +1,4 @@
<?php
$latest = "OpenRA-20100425.exe";
header("Location: $latest");
?>