From 3caa013033f657241e7408a8aafec3d11558b644 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 24 Jan 2012 04:44:08 +0000 Subject: [PATCH] - 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 --- checkin_notes | 8 ++++++++ html/user/host_app_versions.php | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/checkin_notes b/checkin_notes index d590910c29..bd60e9f45d 100644 --- a/checkin_notes +++ b/checkin_notes @@ -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 diff --git a/html/user/host_app_versions.php b/html/user/host_app_versions.php index 519e3f1277..6397fc13c0 100644 --- a/html/user/host_app_versions.php +++ b/html/user/host_app_versions.php @@ -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);