ソースを参照

Make plugin WYSIWYG not required - refs BT#9578

Imanol Losada 10 年 前
コミット
2ef25686dd
1 ファイル変更1 行追加1 行削除
  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));