- web: use et_n instead of pfc_n for #jobs completed

in host app details page
    (pfc_n is not populated for hosts running old clients)


svn path=/trunk/boinc/; revision=25134
This commit is contained in:
David Anderson 2012-01-24 04:44:08 +00:00
parent bd1d4e5fe8
commit 3caa013033
2 changed files with 9 additions and 1 deletions

View File

@ -941,3 +941,11 @@ Rom 23 Jan 2012
samples/vboxwrapper/
vbox.cpp, .h
vboxwrapper.cpp
David 23 Jan 2012
- web: use et_n instead of pfc_n for #jobs completed
in host app details page
(pfc_n is not populated for hosts running old clients)
html/user/
host_app_versions.php

View File

@ -53,7 +53,7 @@ function av_desc($gavid) {
function show_hav($hav) {
row1(av_desc($hav->app_version_id));
row2(tra("Number of tasks completed"), $hav->pfc_n);
row2(tra("Number of tasks completed"), $hav->et_n);
row2(tra("Max tasks per day"), $hav->max_jobs_per_day);
row2(tra("Number of tasks today"), $hav->n_jobs_today);
row2(tra("Consecutive valid tasks"), $hav->consecutive_valid);