remove unnecessary default values
This commit is contained in:
parent
f811af1dbf
commit
a7c3f34b21
1 changed files with 3 additions and 6 deletions
|
@ -289,22 +289,19 @@ class CRM_Twingle_Form_Profile extends CRM_Core_Form {
|
|||
'select',
|
||||
'prefix_male',
|
||||
E::ts('Prefix option for submitted value "male"'),
|
||||
static::getPrefixOptions(),
|
||||
FALSE
|
||||
static::getPrefixOptions()
|
||||
);
|
||||
$this->add(
|
||||
'select',
|
||||
'prefix_female',
|
||||
E::ts('Prefix option for submitted value "female"'),
|
||||
static::getPrefixOptions(),
|
||||
FALSE
|
||||
static::getPrefixOptions()
|
||||
);
|
||||
$this->add(
|
||||
'select',
|
||||
'prefix_other',
|
||||
E::ts('Prefix option for submitted value "other"'),
|
||||
static::getPrefixOptions(),
|
||||
FALSE
|
||||
static::getPrefixOptions()
|
||||
);
|
||||
|
||||
$payment_instruments = CRM_Twingle_Profile::paymentInstruments();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue