Skip to content

Commit

Permalink
MDL-26523 grade: fixed a called to addHelpButton() that was asking fo…
Browse files Browse the repository at this point in the history
…r a non-existent string
  • Loading branch information
andyjdavis committed Apr 27, 2012
1 parent ead4f18 commit 692e4f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grade/edit/tree/grade_form.php
Expand Up @@ -80,7 +80,7 @@ function definition() {
}

$mform->addElement('select', 'finalgrade', get_string('finalgrade', 'grades'), $scaleopt);
$mform->addHelpButton('finalgrade', 'finalgrade', 'finalgrade');
$mform->addHelpButton('finalgrade', 'finalgrade', 'grades');
$mform->disabledIf('finalgrade', 'overridden', 'notchecked');
}

Expand Down

0 comments on commit 692e4f7

Please sign in to comment.