*** empty log message ***

svn path=/trunk/boinc/; revision=1971
This commit is contained in:
Karl Chen 2003-08-04 23:24:46 +00:00
parent 58defdd9e5
commit 5010bd91e4
2 changed files with 4 additions and 4 deletions

View File

@ -357,7 +357,7 @@ function show_result_short($result) {
}
$version = sprintf("%.2f", $result->client_version_num/100);
echo "<td>$version</td>";
echo "<td>$received</td>";
echo "<td nowrap>$received</td>";
echo "
</tr>
";

View File

@ -44,7 +44,7 @@
if ($server_state[$ss] == 0) {
$x = "0";
} else {
$x = "<a href=db_action.php?table=result&received_time=$y&result_server_state=$ss&sortby=received_time&detail=low>".$server_state[$ss]."</a>";
$x = "<a href=db_action.php?table=result&received_time=$y&result_server_state=$ss&sort_by=received_time&detail=low>".$server_state[$ss]."</a>";
}
row2(result_server_state_string($ss), $x);
}
@ -56,7 +56,7 @@
if ($outcome[$ro] == 0) {
$x = "0";
} else {
$x = "<a href=db_action.php?table=result&received_time=$y&result_outcome=$ro&sortby=received_time&detail=low>".$outcome[$ro]."</a>";
$x = "<a href=db_action.php?table=result&received_time=$y&result_outcome=$ro&sort_by=received_time&detail=low>".$outcome[$ro]."</a>";
}
row2(result_outcome_string($ro), $x);
}
@ -68,7 +68,7 @@
if ($client_state[$cs] == 0) {
$x = "0";
} else {
$x = "<a href=db_action.php?table=result&received_time=$y&result_client_state=$cs&sortby=received_time&detail=low>".$client_state[$cs]."</a>";
$x = "<a href=db_action.php?table=result&received_time=$y&result_client_state=$cs&sort_by=received_time&detail=low>".$client_state[$cs]."</a>";
}
row2(result_client_state_string($cs), $x);
}