-
Bug
-
Resolution: Fixed
-
Minor
-
2.5.4, 2.6.1
-
MOODLE_25_STABLE, MOODLE_26_STABLE
-
MOODLE_25_STABLE, MOODLE_26_STABLE, MOODLE_27_STABLE
-
In the quiz overview report
public function setup_from_user_preferences() {
|
parent::setup_from_user_preferences();
|
|
$this->slotmarks = get_user_preferences('quiz_report_overview_detailedmarks', $this->slotmarks);
|
}
|
|
public function update_user_preferences() {
|
parent::update_user_preferences();
|
|
if (quiz_has_grades($this->quiz)) {
|
set_user_preference('quiz_overview_slotmarks', $this->slotmarks);
|
}
|
}
|
You see, the name used to store and load user preference are not the same.
- has a non-specific relationship to
-
MDL-43833 Quiz reports lose settings
-
- Closed
-