*** empty log message ***

svn path=/trunk/boinc/; revision=1973
This commit is contained in:
Karl Chen 2003-08-04 23:25:43 +00:00
parent f51b18b11a
commit 9faacb9074
1 changed files with 6 additions and 2 deletions

View File

@ -328,7 +328,7 @@ function result_short_header() {
<th>outcome</th>
<th>client state</th>
<th>host</th>
<th>client version</th>
<th>client ver</th>
<th>received</th>
</tr>
";
@ -355,7 +355,11 @@ function show_result_short($result) {
} else {
echo "<td>---</td>\n";
}
if ($result->client_version_num) {
$version = '---';
} else {
$version = sprintf("%.2f", $result->client_version_num/100);
}
echo "<td>$version</td>";
echo "<td>$received</td>";
echo "