Personal tools
User Handbook/Admin Panel/Extensions/Modules/Glossary
From CMSMS
[edit]
How to make Glossary work with WYSIWYG editor?
Cyberman provided this solution:
- Open Glossary.module.php with your favourite editor
- Go to line 1186
- Find the following Code:
$this->smarty->assign('input_field_definition',$this->CreateTextArea(false, $id, $def, 'definition')); - Change it to Code:
$this->smarty->assign('input_field_definition',$this->CreateTextArea(true, $id, $def, 'definition')); - Save and upload it.
