From ac8ba0c436cff4dbdeb1a8ac972ab232f8106739 Mon Sep 17 00:00:00 2001 From: azammitdcarf Date: Tue, 21 Jul 2009 05:58:22 +0000 Subject: [PATCH] Added completions as well as completions per hour --- performance.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/performance.php b/performance.php index 28f0bc03..8d7859ae 100644 --- a/performance.php +++ b/performance.php @@ -72,20 +72,20 @@ if ($questionnaire_id) */ $rs = get_CPH_by_shift($questionnaire_id,$shift_id); print "
" . T_("This shift") . "
"; - xhtml_table($rs,array("firstName","CPH"),array(T_("Operator"),T_("Completions per hour")),"tclass",array("operator_id" => $operator_id)); + xhtml_table($rs,array("firstName","completions","CPH"),array(T_("Operator"),T_("Completions"),T_("Completions per hour")),"tclass",array("operator_id" => $operator_id)); } $rs = get_CPH_by_questionnaire($questionnaire_id); print "
" . T_("This project") . "
"; - xhtml_table($rs,array("firstName","CPH"),array(T_("Operator"),T_("Completions per hour")),"tclass",array("operator_id" => $operator_id)); + xhtml_table($rs,array("firstName","completions","CPH"),array(T_("Operator"),T_("Completions"),T_("Completions per hour")),"tclass",array("operator_id" => $operator_id)); } $rs = get_CPH(); print "
" . T_("Overall") . "
"; -xhtml_table($rs,array("firstName","CPH"),array(T_("Operator"),T_("Completions per hour")),"tclass",array("operator_id" => $operator_id)); +xhtml_table($rs,array("firstName","completions","CPH"),array(T_("Operator"),T_("Completions"),T_("Completions per hour")),"tclass",array("operator_id" => $operator_id)); xhtml_foot();