Hello members,
I'm doing a proof of concept TestLink 1.9.3.
I note the TL have FCKEditor. With that, is inserted into the BD values in HTML instead of plain text (but with special characters of language, in database the field is UTF8) of CT.
I would like to disable FKeditor on TestLink 1.9.3. I've been searching and could not find good solution. Is it possible?
The only approach I got was with Firefox Aurora, because this browser (thankfully) doesn't activate this module HTML editing.
Any idea?
Br
Paulo Matos
Portugal
[SOLVED] - Disable FCKEditor - TL 1.9.3
Moderators: Amaradana, TurboPT, TL Developers
Re: Disable FCKEditor - TL 1.9.3
just read carefully config.inc.php and you will find all info you need
Re: Disable FCKEditor - TL 1.9.3
Yes you are right. In my case line 500, I change
$tlCfg->gui->text_editor['all'] = array('type' => 'fckeditor',
To
$tlCfg->gui->text_editor['all'] = array('type' => 'none'.
Thanks
BR, from PT
$tlCfg->gui->text_editor['all'] = array('type' => 'fckeditor',
To
$tlCfg->gui->text_editor['all'] = array('type' => 'none'.
Thanks
BR, from PT
Re: [SOLVED] - Disable FCKEditor - TL 1.9.3
And remember, don't modify config.inc.php, put your changes in custom_config.inc.php.
This preserve your changes when you upgrade testlink.
This preserve your changes when you upgrade testlink.