From 31bf4ef6466d672dfcaaa7899b260bb878a99f89 Mon Sep 17 00:00:00 2001 From: Adrian Greeve Date: Thu, 9 Jan 2014 16:03:16 +0800 Subject: [PATCH] MDL-31597 gradebook: Removed the percentage symbol from weights in the gradebook. --- grade/report/user/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grade/report/user/lib.php b/grade/report/user/lib.php index 33c8477709a..0b0c15a0333 100644 --- a/grade/report/user/lib.php +++ b/grade/report/user/lib.php @@ -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); } }