Personal tools
Views

User Handbook/Admin Panel/Extensions/Modules/Glossary

From CMSMS

How to make Glossary work with WYSIWYG editor?

Cyberman provided this solution:

  1. Open Glossary.module.php with your favourite editor
  2. Go to line 1186
  3. Find the following Code:
    $this->smarty->assign('input_field_definition',$this->CreateTextArea(false, $id, $def, 'definition'));
  4. Change it to Code:
    $this->smarty->assign('input_field_definition',$this->CreateTextArea(true, $id, $def, 'definition'));
  5. Save and upload it.