From 61ce18e6ca78f8370e43fd5cd767fed24f540ab6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rytis=20Slatkevi=C4=8Dius?= Date: Mon, 17 Sep 2007 19:15:01 +0000 Subject: [PATCH] user web: fix invalid validate state reported to user. svn path=/trunk/boinc/; revision=13597 --- checkin_notes | 6 +++++- html/inc/result.inc | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/checkin_notes b/checkin_notes index 2ed199eddc..b0b3ac9817 100755 --- a/checkin_notes +++ b/checkin_notes @@ -8530,4 +8530,8 @@ Bruce 17 Sept 2007 sched_config.C sched_locality.C - +Rytis 17 Sep 2007 + - user web: fix invalid validate state reported to user. + + html/inc/ + result.inc diff --git a/html/inc/result.inc b/html/inc/result.inc index 6b1353f9a6..75dc66ac54 100644 --- a/html/inc/result.inc +++ b/html/inc/result.inc @@ -1,4 +1,5 @@ server_state <> 5) return "---"; @@ -257,7 +258,7 @@ function show_result($result) { row2("Report deadline", time_str($result->report_deadline)); row2("CPU time", $result->cpu_time); row2("stderr out", "
".htmlspecialchars($result->stderr_out)."
"); - row2("Validate state", validate_state_str($result->validate_state)); + row2("Validate state", validate_state_str($result)); row2("Claimed credit", $result->claimed_credit); row2("Granted credit", $result->granted_credit); row2("application version", version_string($result->app_version_num));