*** empty log message ***

svn path=/trunk/boinc/; revision=12357
This commit is contained in:
David Anderson 2007-04-12 21:53:59 +00:00
parent 8bf3b76717
commit 773d149d4a
2 changed files with 10 additions and 2 deletions

View File

@ -75,9 +75,8 @@ echo "
<li><a href='manage_apps.php'>Manage applications</a></li>
<li><a href='manage_app_versions.php'>Manage application versions</a></li>
<li><a href='mass_email.php'>Send mass email to a selected set of users</a></li>
<li><a href=\"forum_repair.php\">Forum repair</a></li>
<li><a href=\"repair_validator_problem.php\">Repair a validator problem</a></li>
<li><a href=\"problem_host.php\">Email user with misconfigured host</a></li>
<li><a href=job_times.php>FLOP count statistics</a>
<li><a href=\"cancel_wu_form.php\">Cancel workunits</a></li>
<li><form action=\"manage_user.php\">
<input type=submit value=\"Manage user\"</a>

View File

@ -136,6 +136,11 @@ function analyze($appid, $platformid, $nresults) {
}
}
if (!$n) {
echo "No done results for that app";
exit;
}
ksort($hist);
show_stats($hist);
echo "<hr>\n";
@ -161,6 +166,10 @@ function show_form() {
if ($_GET['submit']=='OK') {
set_time_limit(0);
$appid = $_GET['appid'];
if (!$appid) {
echo "Must supply an appid";
exit;
}
$platformid = $_GET['platformid'];
$quantum = $_GET['quantum'];
$nresults = $_GET['nresults'];