MDL-16649 Call to wrong function, should be __construct I think.

This commit is contained in:
moodler
2008-09-24 06:24:18 +00:00
parent 35bae111b8
commit afb7a3c462
+1 -1
View File
@@ -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);
}
/**