gradebook MDL-22670 added a comment above a function to make its purpose more clear

This commit is contained in:
Andrew Davis 2010-06-18 06:10:22 +00:00
parent 17957b8f7f
commit e229506dab

View File

@ -377,6 +377,8 @@ class grade_edit_tree {
}
}
//Trim's trailing zeros. Used on the 'categories and items' page for grade items settings like aggregation co-efficient
//Grader report has its own decimal place settings so they are handled elsewhere
function format_number($number) {
return rtrim(rtrim(format_float($number, 4),'0'),'.');
}