mirror of
https://github.com/moodle/moodle.git
synced 2025-02-13 12:34:28 +01:00
Merge branch 'MDL-32633' of git://github.com/timhunt/moodle
This commit is contained in:
commit
485e67982c
@ -471,28 +471,33 @@ function quiz_set_grade($newgrade, $quiz) {
|
||||
return true;
|
||||
}
|
||||
|
||||
$oldgrade = $quiz->grade;
|
||||
$quiz->grade = $newgrade;
|
||||
|
||||
// Use a transaction, so that on those databases that support it, this is safer.
|
||||
$transaction = $DB->start_delegated_transaction();
|
||||
|
||||
// Update the quiz table.
|
||||
$DB->set_field('quiz', 'grade', $newgrade, array('id' => $quiz->instance));
|
||||
|
||||
// Rescaling the other data is only possible if the old grade was non-zero.
|
||||
if ($quiz->grade > 1e-7) {
|
||||
global $CFG;
|
||||
if ($oldgrade < 1) {
|
||||
// If the old grade was zero, we cannot rescale, we have to recompute.
|
||||
// We also recompute if the old grade was too small to avoid underflow problems.
|
||||
quiz_update_all_final_grades($quiz);
|
||||
|
||||
$factor = $newgrade/$quiz->grade;
|
||||
$quiz->grade = $newgrade;
|
||||
|
||||
// Update the quiz_grades table.
|
||||
} else {
|
||||
// We can rescale the grades efficiently.
|
||||
$timemodified = time();
|
||||
$DB->execute("
|
||||
UPDATE {quiz_grades}
|
||||
SET grade = ? * grade, timemodified = ?
|
||||
WHERE quiz = ?
|
||||
", array($factor, $timemodified, $quiz->id));
|
||||
", array($newgrade/$oldgrade, $timemodified, $quiz->id));
|
||||
}
|
||||
|
||||
if ($oldgrade > 1e-7) {
|
||||
// Update the quiz_feedback table.
|
||||
$factor = $newgrade/$oldgrade;
|
||||
$DB->execute("
|
||||
UPDATE {quiz_feedback}
|
||||
SET mingrade = ? * mingrade, maxgrade = ? * maxgrade
|
||||
|
Loading…
x
Reference in New Issue
Block a user