Details
Description
http://moodle.org/mod/forum/discuss.php?d=65204
Joseph Rézeau suggests the fix:
Solution: In file moodle/mod/quiz/edit.php, towards line 185, replace:
$form->name = get_string('random', 'quiz') .' ('. $category->name .')';
with
$form->name = get_string('random', 'quiz') .' ('. addslashes($category->name) .')';
which is right. I'll apply it.
Issue Links
| This issue is blocked by: | ||||
| MDL-15139 | Cannot create Random Short Answer |
|
|
|
Activity
- All
- Comments
- History
- Activity
- Source
- Test Sessions
Can add a random short answer question to a quizz in HEAD, 1.9, 1.8 and 1.7. It works fine, Thanks Tim.