diff --git a/top_testers.php b/top_testers.php
deleted file mode 100644
index 8006b160c1..0000000000
--- a/top_testers.php
+++ /dev/null
@@ -1,44 +0,0 @@
-
-Each version of the BOINC software is subjected about
-70 separate tests
-on all the major platforms (Windows, Mac, and Linux).
-BOINC relies on volunteer 'Alpha testers'
-to perform all these tests.
-
-The following volunteers have reported
-test results in the last 30 days.
-Many thanks to these people for their
-help in improving the reliability of BOINC software.
-
-If you're interested in volunteering as an Alpha tester,
-go here.
- |
-";
-$t = time() - 30*86400;
-
-$r = mysql_query("select * from test_report where UNIX_TIMESTAMP(mod_time)>$t");
-while ($rep = mysql_fetch_object($r)) {
- $count[$rep->userid]++;
-}
-
-asort($count);
-$count = array_reverse($count, true);
-
-table_header("Name", "Test reports in last 30 days");
-foreach ($count as $id=>$c) {
- $u = BoincUser::lookup_id($id);
- row2("id>$u->name", $c);
-}
-end_table();
-?>