mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-08 00:47:04 +03:00
Drop unused allow_html_editor_source_button
This commit is contained in:
parent
8498290d93
commit
a3dc8ad639
4 changed files with 5 additions and 4 deletions
3
plugins/ckeditor/ckeditor.js
vendored
3
plugins/ckeditor/ckeditor.js
vendored
|
|
@ -35,8 +35,7 @@
|
||||||
],
|
],
|
||||||
|
|
||||||
removePlugins: 'liststyle' + (rl.settings.app('allowHtmlEditorBitiButtons') ? '' : ',bidi'),
|
removePlugins: 'liststyle' + (rl.settings.app('allowHtmlEditorBitiButtons') ? '' : ',bidi'),
|
||||||
removeButtons: 'Format,Undo,Redo,Cut,Copy,Paste,Anchor,Strike,Subscript,Superscript,Image,SelectAll'
|
removeButtons: 'Format,Undo,Redo,Cut,Copy,Paste,Anchor,Strike,Subscript,Superscript,Image,SelectAll',
|
||||||
+ (rl.settings.app('allowHtmlEditorSourceButton') ? '' : ',Source'),
|
|
||||||
removeDialogTabs: 'link:advanced;link:target;image:advanced;images:advanced',
|
removeDialogTabs: 'link:advanced;link:target;image:advanced;images:advanced',
|
||||||
|
|
||||||
extraPlugins: 'plain,signature',
|
extraPlugins: 'plain,signature',
|
||||||
|
|
|
||||||
|
|
@ -211,3 +211,7 @@
|
||||||
line-height: 25px;
|
line-height: 25px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.RL-PopupsCompose[data-wysiwyg*=Forced] .cke_button__plain {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -987,7 +987,6 @@ class Actions
|
||||||
'webVersionPath' => Utils::WebVersionPath(),
|
'webVersionPath' => Utils::WebVersionPath(),
|
||||||
'token' => $oConfig->Get('security', 'csrf_protection', false) ? Utils::GetCsrfToken() : '',
|
'token' => $oConfig->Get('security', 'csrf_protection', false) ? Utils::GetCsrfToken() : '',
|
||||||
'inIframe' => (bool)$oConfig->Get('labs', 'in_iframe', false),
|
'inIframe' => (bool)$oConfig->Get('labs', 'in_iframe', false),
|
||||||
'allowHtmlEditorSourceButton' => (bool)$oConfig->Get('labs', 'allow_html_editor_source_button', false),
|
|
||||||
'allowHtmlEditorBitiButtons' => (bool)$oConfig->Get('labs', 'allow_html_editor_biti_buttons', false),
|
'allowHtmlEditorBitiButtons' => (bool)$oConfig->Get('labs', 'allow_html_editor_biti_buttons', false),
|
||||||
'allowCtrlEnterOnCompose' => (bool)$oConfig->Get('labs', 'allow_ctrl_enter_on_compose', false),
|
'allowCtrlEnterOnCompose' => (bool)$oConfig->Get('labs', 'allow_ctrl_enter_on_compose', false),
|
||||||
'hideSubmitButton' => (bool)$oConfig->Get('login', 'hide_submit_button', true),
|
'hideSubmitButton' => (bool)$oConfig->Get('login', 'hide_submit_button', true),
|
||||||
|
|
|
||||||
|
|
@ -321,7 +321,6 @@ Enables caching in the system'),
|
||||||
'allow_message_append' => array(false),
|
'allow_message_append' => array(false),
|
||||||
'login_fault_delay' => array(1),
|
'login_fault_delay' => array(1),
|
||||||
'log_ajax_response_write_limit' => array(300),
|
'log_ajax_response_write_limit' => array(300),
|
||||||
'allow_html_editor_source_button' => array(false),
|
|
||||||
'allow_html_editor_biti_buttons' => array(false),
|
'allow_html_editor_biti_buttons' => array(false),
|
||||||
'allow_ctrl_enter_on_compose' => array(true),
|
'allow_ctrl_enter_on_compose' => array(true),
|
||||||
'try_to_detect_hidden_images' => array(false),
|
'try_to_detect_hidden_images' => array(false),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue