Skip to content

Commit

Permalink
MDL-28643 Fix debugging message when deleting activity with grade com…
Browse files Browse the repository at this point in the history
…pletion
  • Loading branch information
sammarshallou committed Aug 9, 2011
1 parent 80eb52c commit 37f5c92
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions lib/grade/grade_grade.php
Original file line number Diff line number Diff line change
Expand Up @@ -794,10 +794,16 @@ function notify_changed($deleted) {
// Get course-module
$cm = get_coursemodule_from_instance($this->grade_item->itemmodule,
$this->grade_item->iteminstance, $this->grade_item->courseid);
// If the course-module doesn't exist, display a warning...
if (!$cm) {
debugging("Couldn't find course-module for module
'{$this->grade_item->itemmodule}', instance '{$this->grade_item->iteminstance}',
course '{$this->grade_item->courseid}'");
// ...unless the grade is being deleted in which case it's likely
// that the course-module was just deleted too, so that's okay.
if (!$deleted) {
debugging("Couldn't find course-module for module '" .
$this->grade_item->itemmodule . "', instance '" .
$this->grade_item->iteminstance . "', course '" .
$this->grade_item->courseid . "'");
}
return;
}

Expand Down

0 comments on commit 37f5c92

Please sign in to comment.