Skip to content

Commit

Permalink
MDL-34793 mod_assign Fix rendering error that causes student view to …
Browse files Browse the repository at this point in the history
…break in some cases.

When feedback is switched on for a assignment, and the teacher enters a grade through the gradebook, the student
view would become broken, throwing a coding error. Added check that $status->grade is not empty before passing
to assign_feedback_XXX::is_empty(), as that function expects an object.
  • Loading branch information
ericmerrill committed Aug 14, 2012
1 parent 470d47f commit 8c0cf5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod/assign/renderer.php
Expand Up @@ -321,7 +321,7 @@ public function render_assign_feedback_status(assign_feedback_status $status) {
}

foreach ($status->feedbackplugins as $plugin) {
if ($plugin->is_enabled() && $plugin->is_visible() && !$plugin->is_empty($status->grade)) {
if ($plugin->is_enabled() && $plugin->is_visible() && !empty($status->grade) && !$plugin->is_empty($status->grade)) {
$row = new html_table_row();
$cell1 = new html_table_cell($plugin->get_name());
$pluginfeedback = new assign_feedback_plugin_feedback($plugin, $status->grade, assign_feedback_plugin_feedback::SUMMARY, $status->coursemoduleid, $status->returnaction, $status->returnparams);
Expand Down

0 comments on commit 8c0cf5b

Please sign in to comment.