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();