From: Samuel Vanhove Date: Wed, 29 Apr 2015 22:44:31 +0000 (-0400) Subject: CRM-15375 - small mistake when concatenating the class X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=398108d6c37c19375aa6bc6c33daa6cece18f790;p=civicrm-core.git CRM-15375 - small mistake when concatenating the class --- 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 {