Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.8, 1.8.1, 1.8.2, 1.8.3, 1.8.4, 1.9
-
None
-
MOODLE_18_STABLE, MOODLE_19_STABLE
-
MOODLE_18_STABLE, MOODLE_19_STABLE, MOODLE_20_STABLE
Description
multiple choice question text not wrapped in Lesson
see this discussion: http://moodle.org/mod/forum/discuss.php?d=83566
Bug tested in 1.8 and 1.9, probably exists in 2.0.
Diagnostic: problem arises because of the <fieldset class="invisiblefieldset"> introduced, I suppose, for accessibility purposes.
Simple fix (for 1.8)
in file mod/lesson/view.php line 532 replace:
echo '<fieldset class="invisiblefieldset">';
with
echo '<fieldset class="invisiblefieldset" style="display: block; text-align:left;">';
Joseph
PS.- text-align:left; needed for MSIE 7, not needed for FireFox. Not tested in other browsers.