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

This commit is contained in:
Klaus Leithoff 2013-10-24 14:43:25 +00:00
parent a606f1f266
commit df20b4b360

View File

@ -167,15 +167,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;