-
Bug
-
Resolution: Fixed
-
Minor
-
3.3
-
MOODLE_33_STABLE
-
MOODLE_33_STABLE
-
MDL-59885-master -
combined_document.php is incorrectly setting the status of the document combination thanks to this case:
switch ($status) {
|
case \core_files\conversion::STATUS_IN_PROGRESS:
|
case \core_files\conversion::STATUS_PENDING:
|
$pending = true;
|
case \core_files\conversion::STATUS_FAILED:
|
There should be a break; after STATUS_PENDING
This has the effect that the assignment grader interface doesn't keep polling until the document has finished converting.
- will help resolve
-
MDL-62626 Add a force reconvert option to Assignment grader (to combat blank page)
- Open