CRM-15375 - small mistake when concatenating the class
authorSamuel Vanhove <samuel@symbiotic.coop>
Wed, 29 Apr 2015 22:44:31 +0000 (18:44 -0400)
committerSamuel Vanhove <samuel@symbiotic.coop>
Wed, 29 Apr 2015 22:44:31 +0000 (18:44 -0400)
CRM/Core/I18n/Form.php

index a02e0f3469b5931afd4be08a6b886039f8799597..db1e77f5ea22843a5e51ea2af684af116d3696ff 100644 (file)
@@ -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 {