mirror of https://github.com/BOINC/boinc.git
parent
32694a5e9f
commit
d5f19d9515
|
@ -136,7 +136,10 @@ function show_platform($short_name, $p, $dev) {
|
|||
function show_platform_xml($short_name, $p, $dev) {
|
||||
foreach ($p["versions"] as $i=>$v) {
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
@ -210,4 +213,4 @@ if ($xml) {
|
|||
page_tail();
|
||||
}
|
||||
|
||||
?>
|
||||
//?>
|
||||
|
|
Loading…
Reference in New Issue