From 1301a07a3ecf7d01289d87f7b96707acbbd04242 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 adb3badd29d..c2158278754 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); } }