]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-13231 outcomes aggregation off by default now; merged from MOODLE_19_STABLE
authorskodak <skodak>
Sun, 17 Feb 2008 16:06:03 +0000 (16:06 +0000)
committerskodak <skodak>
Sun, 17 Feb 2008 16:06:03 +0000 (16:06 +0000)
admin/settings/grades.php

index 427bcaaad4d7c6a71cd95647a0ff4c4984ba2c58..aeac2007d63fa542cc0cffeb69c28afcda3e875e 100644 (file)
@@ -73,9 +73,9 @@ if (has_capability('moodle/grade:manage', $systemcontext)
         $defaults = array('value'=>1, 'forced'=>false, 'adv'=>true);
         $temp->add(new admin_setting_gradecat_combo('grade_aggregateonlygraded', get_string('aggregateonlygraded', 'grades'),
                     get_string('aggregateonlygradedhelp', 'grades'), $defaults, $options));
+        $defaults = array('value'=>0, 'forced'=>false, 'adv'=>true);
         $temp->add(new admin_setting_gradecat_combo('grade_aggregateoutcomes', get_string('aggregateoutcomes', 'grades'),
                     get_string('aggregateoutcomeshelp', 'grades'), $defaults, $options));
-        $defaults = array('value'=>0, 'forced'=>false, 'adv'=>true);
         $temp->add(new admin_setting_gradecat_combo('grade_aggregatesubcats', get_string('aggregatesubcats', 'grades'),
                     get_string('aggregatesubcatshelp', 'grades'), $defaults, $options));