From 892f90205a9ce6ba07fc67fa48983eb9075b5d62 Mon Sep 17 00:00:00 2001 From: Klaus Leithoff Date: Thu, 24 Oct 2013 14:42:40 +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 1140ac9f0f..4b6b56f5ab 100644 --- a/phpgwapi/inc/class.egw_ckeditor_config.inc.php +++ b/phpgwapi/inc/class.egw_ckeditor_config.inc.php @@ -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;