work around ckeditor problem with default (kama) skin, by falling through to moonocolor

This commit is contained in:
Klaus Leithoff 2013-10-24 14:42:40 +00:00
parent 87388857d7
commit 892f90205a

View File

@ -170,15 +170,15 @@ class egw_ckeditor_config
//Convert old fckeditor skin names to new ones
switch ($skin)
{
case 'moono':
$skin = "moono";
break;
case 'silver':
case 'office2003':
case 'kama':
case 'default':
$skin = "kama";
break;
case 'moono':
$skin = "moono";
break;
if (html::$user_agent != 'firefox') break;
case 'moonocolor':
$skin = "moonocolor";
break;