From 724d2c54da2a648b0c245788ef22a767bbbd804b Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Fri, 17 Jun 2016 09:16:21 +1000 Subject: [PATCH] Add in help pre and help post fields to price option form --- CRM/Price/Form/Option.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CRM/Price/Form/Option.php b/CRM/Price/Form/Option.php index 52337dbf32..a29cf32631 100644 --- a/CRM/Price/Form/Option.php +++ b/CRM/Price/Form/Option.php @@ -216,6 +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')); // weight $this->add('text', 'weight', ts('Order'), NULL, TRUE); -- 2.25.1