diff --git a/admin/quotareport.php b/admin/quotareport.php index 7aec9b9f..880effc2 100644 --- a/admin/quotareport.php +++ b/admin/quotareport.php @@ -204,16 +204,16 @@ if ($questionnaire_id) if ($completions < $v['completions']) //if completions less than the quota, allow for closing/opening { if ($v['quota_reached'] == 1) - $status = "" . T_("closed") . ""; + $status = "" . T_("closed") . ""; else - $status = "" . T_("open") . ""; + $status = "" . T_("open") . " "; } else { if ($v['quota_reached'] == 1) - $status = T_("closed"); + $status = "" . T_("closed") . ""; else - $status = T_("open"); + $status = "" . T_("open") . " "; } $report[] = array("strata" => "" . $v['description'] . "", "status" => $status, "quota" => $v['completions'], "sample" => $drawn + $remain, "sampleused" => $drawn, "sampleremain" => $remain, "completions" => $completions, "perc" => $perc, "priority" => "", "autoprioritise" => "  "); @@ -302,7 +302,7 @@ if ($questionnaire_id) } -xhtml_foot(); +xhtml_foot(array("../js/custom.js")); ?>