From 0d893225cd28d03cf91801ba8dfee41dd9ddfdb3 Mon Sep 17 00:00:00 2001 From: azammitdcarf Date: Thu, 3 Feb 2011 05:40:11 +0000 Subject: [PATCH] Removed auto refresh from performance screen and disabled overall statistics as not useful for operators, and performance can appear at the start of each case --- performance.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/performance.php b/performance.php index 5506125f..8ac69e02 100644 --- a/performance.php +++ b/performance.php @@ -58,7 +58,7 @@ $js = false; if (AUTO_LOGOUT_MINUTES !== false) $js = array("include/jquery-ui/js/jquery-1.4.2.min.js","js/childnap.js"); -xhtml_head(T_("Performance"),true,array("css/table.css"),$js,false,60); +xhtml_head(T_("Performance"),true,array("css/table.css"),$js); $operator_id = get_operator_id(); $questionnaire_id = get_questionnaire_id($operator_id); @@ -85,10 +85,11 @@ if ($questionnaire_id) xhtml_table($rs,array("firstName","completions","CPH"),array(T_("Operator"),T_("Completions"),T_("Completions per hour")),"tclass",array("operator_id" => $operator_id)); } - +/* Don't display overall performance - not useful to operators? $rs = get_CPH(); print "
" . T_("Overall") . "
"; xhtml_table($rs,array("firstName","completions","CPH"),array(T_("Operator"),T_("Completions"),T_("Completions per hour")),"tclass",array("operator_id" => $operator_id)); +*/ xhtml_foot();