mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-18 04:31:06 +01:00
* API: HTML Editor-> disable encoding of html entities in output (this needs to set the ckeditor config value to false, since the default is true with the current ckeditor version)
This commit is contained in:
parent
99150590c6
commit
93d83f319d
@ -148,7 +148,9 @@ class egw_ckeditor_config
|
|||||||
//Convert the pixel height to an integer value
|
//Convert the pixel height to an integer value
|
||||||
$config['resize_enabled'] = false;
|
$config['resize_enabled'] = false;
|
||||||
$config['height'] = (int)$height;
|
$config['height'] = (int)$height;
|
||||||
|
//disable encoding as entities needs to set the config value to false, as the default is true with the current ckeditor version
|
||||||
|
$config['entities'] = false;
|
||||||
|
$config['entities_latin'] = false;
|
||||||
$config['entities'] = true;
|
$config['entities'] = true;
|
||||||
$config['entities_latin'] = true;
|
$config['entities_latin'] = true;
|
||||||
$config['editingBlock'] = true;
|
$config['editingBlock'] = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user