From b82785ca039ec52733765122d17642a58353125c Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Thu, 23 Jun 2016 17:30:26 +1000 Subject: [PATCH] Attempt to fix issue where doesn't save to multilingual db --- CRM/Price/Form/Option.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Price/Form/Option.php b/CRM/Price/Form/Option.php index a29cf32631..645a436ddc 100644 --- a/CRM/Price/Form/Option.php +++ b/CRM/Price/Form/Option.php @@ -216,8 +216,8 @@ class CRM_Price_Form_Option extends CRM_Core_Form { $this->addRule('amount', ts('Please enter a monetary value for this field.'), 'money'); $this->add('textarea', 'description', ts('Description')); - $this->add('textarea', 'help_pre', ts('Pre Option Help')); - $this->add('textarea', 'help_post', ts('Post Option Help')); + $this->add('textarea', 'help_pre', ts('Pre Option Help'), NULL, TRUE); + $this->add('textarea', 'help_post', ts('Post Option Help'), NULL, TRUE); // weight $this->add('text', 'weight', ts('Order'), NULL, TRUE); -- 2.25.1