From 398108d6c37c19375aa6bc6c33daa6cece18f790 Mon Sep 17 00:00:00 2001 From: Samuel Vanhove Date: Wed, 29 Apr 2015 18:44:31 -0400 Subject: [PATCH] CRM-15375 - small mistake when concatenating the class --- CRM/Core/I18n/Form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/I18n/Form.php b/CRM/Core/I18n/Form.php index a02e0f3469..db1e77f5ea 100644 --- a/CRM/Core/I18n/Form.php +++ b/CRM/Core/I18n/Form.php @@ -82,7 +82,7 @@ class CRM_Core_I18n_Form extends CRM_Core_Form { $attributes['class'] .= ' default-lang'; } if ($widget['type'] == 'RichTextEditor') { - $attributes['class'] = ' collapsed'; + $attributes['class'] .= ' collapsed'; $this->add('wysiwyg', $name, $languages[$locale], $attributes, $required); } else { -- 2.25.1