-
Bug
-
Resolution: Fixed
-
Minor
-
None
-
1.9
-
None
-
Easy
-
MOODLE_19_STABLE
When viewing "Question Preview" window, and when clicking the "Fill with Correct Answer" button
all images align to top left of window. (error!)
To fix this issue, open "question/type/dragdrop/questiontype.php" line 155. and change it from:
foreach ($question->options->media as $item) {
|
$responses[$item->id]="{$item->targetx},{$item->targety},{$item->displaywidth},{$item->displayheight}";
|
}
|
To:
foreach ($question->options->media as $item) {
|
$hotspots = array_shift($item->hotspots);
|
$responses[$item->id]="{$hotspots->x},{$hotspots->y},{$hotspots->width},{$hotspots->height}";
|
}
|
|