mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
MDL-33572 - assign: fixed syntax probblem found immediately after integration
Grr. shouldn't have escaped our review.
This commit is contained in:
parent
08f5648de3
commit
502be9a069
@ -900,7 +900,7 @@ class assign {
|
|||||||
} else {
|
} else {
|
||||||
$displaygrade = format_float($grade);
|
$displaygrade = format_float($grade);
|
||||||
}
|
}
|
||||||
$o = '<input type="text" name="quickgrade_' . $userid . '" value="' . $displaygrade . '" size="6" maxlength
|
$o = '<input type="text" name="quickgrade_' . $userid . '" value="' . $displaygrade . '" size="6" maxlength="10" class="quickgrade"/>';
|
||||||
$o .= ' / ' . format_float($this->get_instance()->grade,2);
|
$o .= ' / ' . format_float($this->get_instance()->grade,2);
|
||||||
$o .= '<input type="hidden" name="grademodified_' . $userid . '" value="' . $modified . '"/>';
|
$o .= '<input type="hidden" name="grademodified_' . $userid . '" value="' . $modified . '"/>';
|
||||||
return $o;
|
return $o;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user