mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +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['disableNativeSpellChecker'] = true;
|
||||
|
||||
$config['removePlugins'] = 'elementspath';
|
||||
|
||||
$config['toolbarStartupExpanded'] = $expanded_toolbar;
|
||||
|
||||
$config['filebrowserBrowseUrl'] = self::get_filebrowserBrowseUrl($start_path);
|
||||
|
@ -595,8 +595,8 @@ class html
|
||||
$_content = self::purify($_content);
|
||||
|
||||
// By default the editor start expanded
|
||||
$expanded = isset($_options['toolbarStartupExpanded']) ?
|
||||
$_options['toolbarStartupExpanded'] != 'false' : true;
|
||||
$expanded = isset($_options['toolbar_expanded']) ?
|
||||
$_options['toolbar_expanded'] == 'true' : true;
|
||||
|
||||
//Get the height in pixels from the pixels parameter
|
||||
$pxheight = (strpos('px', $_height) === false) ?
|
||||
|
Loading…
Reference in New Issue
Block a user