From df20b4b360d5a8da1f8d1f42d09330237aca5b53 Mon Sep 17 00:00:00 2001 From: Klaus Leithoff Date: Thu, 24 Oct 2013 14:43:25 +0000 Subject: [PATCH] work around ckeditor problem with default (kama) skin, by falling through to moonocolor --- phpgwapi/inc/class.egw_ckeditor_config.inc.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/phpgwapi/inc/class.egw_ckeditor_config.inc.php b/phpgwapi/inc/class.egw_ckeditor_config.inc.php index 2f890cf827..42ceaccced 100644 --- a/phpgwapi/inc/class.egw_ckeditor_config.inc.php +++ b/phpgwapi/inc/class.egw_ckeditor_config.inc.php @@ -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;