MDL-31597 gradebook: Removed the percentage symbol from weights in the gradebook.

This commit is contained in:
Adrian Greeve
2014-01-14 11:59:01 +08:00
parent 8ff753857c
commit 1301a07a3e
+1 -1
View File
@@ -415,7 +415,7 @@ class grade_report_user extends grade_report {
$data['weight']['headers'] = "$header_cat $header_row weight";
// has a weight assigned, might be extra credit
if ($grade_object->aggregationcoef > 0 && $type <> 'courseitem') {
$data['weight']['content'] = number_format($grade_object->aggregationcoef,2).'%';
$data['weight']['content'] = number_format($grade_object->aggregationcoef,2);
}
}