From 73b59345bb15ccfcc5564614b9fc19c5577a755a Mon Sep 17 00:00:00 2001 From: Herb vd Dool Date: Tue, 14 Apr 2020 23:45:57 -0400 Subject: [PATCH] UI issue 18: wrap price field separators --- CRM/Price/BAO/PriceField.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Price/BAO/PriceField.php b/CRM/Price/BAO/PriceField.php index 411d11ede5..d2e411ee48 100644 --- a/CRM/Price/BAO/PriceField.php +++ b/CRM/Price/BAO/PriceField.php @@ -405,10 +405,10 @@ class CRM_Price_BAO_PriceField extends CRM_Price_DAO_PriceField { $opt['label'] = !empty($opt['label']) ? $opt['label'] . ' - ' : ''; $preHelpText = $postHelpText = ''; if (!empty($opt['help_pre'])) { - $preHelpText = '' . $opt['help_pre'] . ': '; + $preHelpText = '' . $opt['help_pre'] . ''; } if (!empty($opt['help_post'])) { - $postHelpText = ': ' . $opt['help_post'] . ''; + $postHelpText = '' . $opt['help_post'] . ''; } if (isset($taxAmount) && $invoicing) { if ($displayOpt == 'Do_not_show') { -- 2.25.1