Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.9.3
-
Fix Version/s: 1.9.4
-
Component/s: Accessibility, Glossary
-
Labels:None
-
Affected Branches:MOODLE_19_STABLE
-
Fixed Branches:MOODLE_19_STABLE
Description
Instead of
<p align="center">
we should use
<p style="text-align: center">
This is done by modify the file: /moodle/mod/glossary/print.php
We should change the line:
echo "<p align=\"center\"><strong>".clean_text($pivottoshow)."</strong></p>" ;
for
echo "<p style=\"text-align: center\"><strong>".clean_text($pivottoshow)."</strong></p>" ;
Assigning to Dongsheng and addressing to 1.9.4. Thanks David!