Fixed problem with toolbar not being expanded and removed bottom breadcrumb bar

This commit is contained in:
Andreas Stöckel 2010-07-21 11:45:05 +00:00
parent 408a9ece4f
commit da54059fd1
2 changed files with 4 additions and 2 deletions

View File

@ -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);

View File

@ -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) ?