From 3756b54e3c5eb9c4b8531d64c8346b92de064927 Mon Sep 17 00:00:00 2001 From: Seamus Lee Date: Tue, 21 Jun 2016 09:56:23 +1000 Subject: [PATCH] finish adding description class to help pre and help post --- 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 5b21b41ae49d..5e5981906a9b 100644 --- a/CRM/Price/BAO/PriceField.php +++ b/CRM/Price/BAO/PriceField.php @@ -531,9 +531,9 @@ public static function addQuickFormElement( if ($field->is_display_amounts) { $pre_help = isset($opt['help_pre']) ? - '' . $opt['help_pre'] . ': ' : ''; + '' . $opt['help_pre'] . ': ' : ''; $post_help = isset($opt['help_post']) ? - ': ' . $opt['help_post'] . '' : ''; + ': ' . $opt['help_post'] . '' : ''; $opt['label'] = '' . $opt['label'] . ' - '; if (isset($taxAmount) && $invoicing) { $opt['label'] .= $pre_help . self::getTaxLabel($opt, $valueFieldName, $displayOpt, $taxTerm) . $post_help;