mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
Fixed problem with toolbar not being expanded and removed bottom breadcrumb bar
This commit is contained in:
parent
408a9ece4f
commit
da54059fd1
@ -154,6 +154,8 @@ class egw_ckeditor_config
|
|||||||
$config['editingBlock'] = true;
|
$config['editingBlock'] = true;
|
||||||
$config['disableNativeSpellChecker'] = true;
|
$config['disableNativeSpellChecker'] = true;
|
||||||
|
|
||||||
|
$config['removePlugins'] = 'elementspath';
|
||||||
|
|
||||||
$config['toolbarStartupExpanded'] = $expanded_toolbar;
|
$config['toolbarStartupExpanded'] = $expanded_toolbar;
|
||||||
|
|
||||||
$config['filebrowserBrowseUrl'] = self::get_filebrowserBrowseUrl($start_path);
|
$config['filebrowserBrowseUrl'] = self::get_filebrowserBrowseUrl($start_path);
|
||||||
|
@ -595,8 +595,8 @@ class html
|
|||||||
$_content = self::purify($_content);
|
$_content = self::purify($_content);
|
||||||
|
|
||||||
// By default the editor start expanded
|
// By default the editor start expanded
|
||||||
$expanded = isset($_options['toolbarStartupExpanded']) ?
|
$expanded = isset($_options['toolbar_expanded']) ?
|
||||||
$_options['toolbarStartupExpanded'] != 'false' : true;
|
$_options['toolbar_expanded'] == 'true' : true;
|
||||||
|
|
||||||
//Get the height in pixels from the pixels parameter
|
//Get the height in pixels from the pixels parameter
|
||||||
$pxheight = (strpos('px', $_height) === false) ?
|
$pxheight = (strpos('px', $_height) === false) ?
|
||||||
|
Loading…
Reference in New Issue
Block a user