From: skodak Date: Thu, 4 Oct 2007 17:09:34 +0000 (+0000) Subject: MDL-11599 missing return statement X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=4f30c61dc8066e97ce926439c7645e93be8cf854;p=moodle.git MDL-11599 missing return statement --- diff --git a/grade/report/lib.php b/grade/report/lib.php index c82309bff0..eb478c88f3 100755 --- a/grade/report/lib.php +++ b/grade/report/lib.php @@ -256,7 +256,7 @@ class grade_report { function get_grade_letters() { global $COURSE; $context = get_context_instance(CONTEXT_COURSE, $COURSE->id); - $letters = grade_get_letters($context); + return grade_get_letters($context); } /**