diff --git a/dta.zip b/dta.zip index e05f7438d215d35ee77e876a9c4e822fe6fc289c..2775cc1483356b63dea0a9551ba63eed5cac91b5 100644 Binary files a/dta.zip and b/dta.zip differ diff --git a/dta/lang/en/assignsubmission_dta.php b/dta/lang/en/assignsubmission_dta.php index e7c7fdee12015fe4f5f6592a645f9ec22db53fa2..d80eaa8814d3cf8422e92fe2d2edd153f1bace79 100644 --- a/dta/lang/en/assignsubmission_dta.php +++ b/dta/lang/en/assignsubmission_dta.php @@ -37,7 +37,7 @@ $string["tests_successful"] = " successful"; $string["failures"] = " failure"; $string["compilation_errors"] = " compilation error"; $string["unknown_state"] = " with unknown state"; -$string["success_competencies"] = "Successfully tested competency profile"; +$string["success_competencies"] = "Successfully tested competency profile "; $string["summary"] = "Summary"; $string["total_items"] = "Total items"; $string["success_rate"] = "Success rate"; diff --git a/dta/utils/view.php b/dta/utils/view.php index dab121603d6be97f0ee04dadc670ba973961400f..862480f82b6a6068475ed4e65e6e8862fd84220e 100644 --- a/dta/utils/view.php +++ b/dta/utils/view.php @@ -213,7 +213,7 @@ class ViewSubmissionUtils { $comp=$overallcompetencies[$index]; $shown=$showncompetencies[$index]; // If the competency was actually assessed by the assignment and tests, add a row in the table. -// if($comp!="0") { + if($comp!="0") { // New copy of base attributes array. $resultrowattributes = $tablerowattributes; $tmp = ""; @@ -226,7 +226,7 @@ class ViewSubmissionUtils { $resultrowattributes); $body .= html_writer::tag("tr", $tmp, $resultrowattributes); -// } + } } $body = html_writer::tag("tbody", $body); $html .= html_writer::tag("table", $header . $body, ["class" => "dtaTable"]);