소스 검색

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));