MDL-34985 gradebook Fixing issue where default parent in Full View Add Category could be inconsistent.

Turns out the correct default was already computed, but was not being applied to the setting.
This commit is contained in:
Eric Merrill 2012-08-20 17:09:40 -04:00
parent c92d6f417c
commit 13f87cb21e

View File

@ -225,7 +225,7 @@ class edit_category_form extends moodleform {
$mform->addElement('header', 'headerparent', get_string('parentcategory', 'grades'));
$options = array();
$default = '';
$default = -1;
$categories = grade_category::fetch_all(array('courseid'=>$COURSE->id));
foreach ($categories as $cat) {
@ -238,6 +238,7 @@ class edit_category_form extends moodleform {
if (count($categories) > 1) {
$mform->addElement('select', 'parentcategory', get_string('parentcategory', 'grades'), $options);
$mform->setDefault('parentcategory', $default);
$mform->addElement('static', 'currentparentaggregation', get_string('currentparentaggregation', 'grades'));
}