From: moodler Date: Wed, 24 Sep 2008 06:24:18 +0000 (+0000) Subject: MDL-16649 Call to wrong function, should be __construct I think. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=afb7a3c462af9cb52e95b2c6da5d3436b4d3d9cf;p=moodle.git MDL-16649 Call to wrong function, should be __construct I think. --- diff --git a/grade/report/grader/ajaxlib.php b/grade/report/grader/ajaxlib.php index ec3e61a09d..b647f0cd90 100644 --- a/grade/report/grader/ajaxlib.php +++ b/grade/report/grader/ajaxlib.php @@ -65,7 +65,7 @@ class grade_report_grader_ajax extends grade_report_grader { * @param int $sortitemid The id of the grade_item by which to sort the table */ function grade_report_grader_ajax($courseid, $gpr, $context, $page=null, $sortitemid=null) { - parent::grade_report_grader($courseid, $gpr, $context, $page, $sortitemid); + parent::__construct($courseid, $gpr, $context, $page, $sortitemid); } /**