diff options
author | floam <floam@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-03-01 00:19:31 +0000 |
---|---|---|
committer | floam <floam@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-03-01 00:19:31 +0000 |
commit | 3d3d6a76c9b9ba4613f7e0f068823da8f382d9e2 (patch) | |
tree | 9c5a41bf79c75e799350983db852a8c9ec0ce098 | |
parent | 35985673aaac9c11ed114c031e39628f183dc78e (diff) | |
download | ioquake3-aero-3d3d6a76c9b9ba4613f7e0f068823da8f382d9e2.tar.gz ioquake3-aero-3d3d6a76c9b9ba4613f7e0f068823da8f382d9e2.zip |
yay. it did.
git-svn-id: svn://svn.icculus.org/quake3/trunk@602 edf5b092-35ff-0310-97b2-ce42778d08ea
-rw-r--r-- | web/include/getdata.php | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/web/include/getdata.php b/web/include/getdata.php index 5828f47..66d9907 100644 --- a/web/include/getdata.php +++ b/web/include/getdata.php @@ -1,19 +1,21 @@ <?php -echo $_POST['agree']; + switch ($_POST['agree']) { - case "0": + case "I Agree": $html = "<h2>KEINE DATEN FÜR SIE!</h2> <p>You'll need to agree to the EULA if you want the updated data.</p>"; //nazi-german for "NO DATA FOR YOU!" break; - case "1": + case "I Do Not Agree": $html = "<h2>You agree!</h2> - <p>Good for you. Click here to download a tarball - with the new data <tt>pk3</tt>s.</p>"; + <p>Good for you. You can + <a href=\"http://www.icculus.org/~zakk/quake3-latest-pk3s.zip\"> + download the <tt>pk3</tt>s</a> now.</p>"; break; default: - $html = " + $html = "<p>Newer <tt>pk3</tt> files from id pointrelease patches + are required to play Quake III: Arena on icculus.org/quake3.</p> <h2>EULA</h2> <p>In order for us to distribute the updated pk3 files from id Software, you need to agree to their EULA. Read through it, then click Agree if |