Click to download",
"".$y[1].'');
if ($y[2]) {
list_item("Version", $y[2]);
}
if ($y[3]) {
list_item("Summary", $y[3]);
}
if ($y[4]) {
list_item("Origin",
''.$y[4].''
);
}
if ($y[5]) {
list_item("Platform", $y[5]);
}
if ($y[6]) {
list_item("Description", $y[6]);
}
list_item("Date", $d);
list_end();
page_tail();
}
if ($platform == 'win') {
$x = $win;
} else if ($platform == 'mac') {
$x = $mac;
} else if ($platform == 'linux') {
$x = $linux;
} else if ($platform == 'browser') {
$x = $browser;
} else if ($platform == 'web') {
$x = $web;
} else {
boinc_error_page('bad name');
}
$found = false;
foreach ($x as $y) {
if ($y[0] == $item) {
show_item($y);
$found = true;
break;
}
}
if (!$found) {
boinc_error_page('bad item');
}
?>