Quick Updates

svn path=/trunk/boinc/; revision=15933
This commit is contained in:
Rom Walton 2008-08-24 16:19:28 +00:00
parent 32694a5e9f
commit d5f19d9515
1 changed files with 5 additions and 2 deletions

View File

@ -136,7 +136,10 @@ function show_platform($short_name, $p, $dev) {
function show_platform_xml($short_name, $p, $dev) { function show_platform_xml($short_name, $p, $dev) {
foreach ($p["versions"] as $i=>$v) { foreach ($p["versions"] as $i=>$v) {
if (!$dev && is_dev($v)) continue; if (!$dev && is_dev($v)) continue;
//if (!$dev && ((time() - strtodate($v["date"])) >= 86400*30) continue; // show only those builds that have been around for over
// two weeks. Gives us time to address any showstoppers
// found by the early adopters
if (!$dev && ((time() - strtodate($v["date"])) >= 86400*14)) continue;
show_version_xml($v, $p); show_version_xml($v, $p);
} }
} }
@ -210,4 +213,4 @@ if ($xml) {
page_tail(); page_tail();
} }
?> //?>