Browse Source

Make plugin WYSIWYG not required - refs BT#9578

Imanol Losada 10 years ago
parent
commit
2ef25686dd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/inc/lib/plugin.class.php

+ 1 - 1
main/inc/lib/plugin.class.php

@@ -202,7 +202,7 @@ class Plugin
                     $result->addElement('html', $this->get_lang($name));
                     break;
                 case 'wysiwyg':
-                    $result->addHtmlEditor($name, $this->get_lang($name));
+                    $result->addHtmlEditor($name, $this->get_lang($name), false);
                     break;
                 case 'text':
                     $result->addElement($type, $name, array($this->get_lang($name), $help));