From 896bd22c2861b9bda60c43f96671a152433dcb5b Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Sat, 15 Nov 2014 21:44:23 -0500 Subject: [PATCH] CRM-15603 - Standardize case of 'Number of Terms' --- CRM/Price/Form/Field.php | 2 +- CRM/Price/Form/Option.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Price/Form/Field.php b/CRM/Price/Form/Field.php index 52f758c3e7..a8beb48ec8 100644 --- a/CRM/Price/Form/Field.php +++ b/CRM/Price/Form/Field.php @@ -300,7 +300,7 @@ class CRM_Price_Form_Field extends CRM_Core_Form { array( '' => ' ') + $membershipTypes, FALSE, $js ); - $this->add('text', 'membership_num_terms[' . $i . ']', ts('Number of terms'), CRM_Utils_Array::value('membership_num_terms', $attributes)); + $this->add('text', 'membership_num_terms[' . $i . ']', ts('Number of Terms'), CRM_Utils_Array::value('membership_num_terms', $attributes)); } // weight diff --git a/CRM/Price/Form/Option.php b/CRM/Price/Form/Option.php index 1437de358a..0289259616 100644 --- a/CRM/Price/Form/Option.php +++ b/CRM/Price/Form/Option.php @@ -170,7 +170,7 @@ class CRM_Price_Form_Option extends CRM_Core_Form { '' => ' ') + $membershipTypes, FALSE, array('onClick' => "calculateRowValues( );") ); - $this->add('text', 'membership_num_terms', ts('Number of terms'), $attributes['membership_num_terms']); + $this->add('text', 'membership_num_terms', ts('Number of Terms'), $attributes['membership_num_terms']); } else { $allComponents = explode(CRM_Core_DAO::VALUE_SEPARATOR, $extendComponentId); -- 2.25.1