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',
|
'select',
|
||||||
'prefix_male',
|
'prefix_male',
|
||||||
E::ts('Prefix option for submitted value "male"'),
|
E::ts('Prefix option for submitted value "male"'),
|
||||||
static::getPrefixOptions(),
|
static::getPrefixOptions()
|
||||||
FALSE
|
|
||||||
);
|
);
|
||||||
$this->add(
|
$this->add(
|
||||||
'select',
|
'select',
|
||||||
'prefix_female',
|
'prefix_female',
|
||||||
E::ts('Prefix option for submitted value "female"'),
|
E::ts('Prefix option for submitted value "female"'),
|
||||||
static::getPrefixOptions(),
|
static::getPrefixOptions()
|
||||||
FALSE
|
|
||||||
);
|
);
|
||||||
$this->add(
|
$this->add(
|
||||||
'select',
|
'select',
|
||||||
'prefix_other',
|
'prefix_other',
|
||||||
E::ts('Prefix option for submitted value "other"'),
|
E::ts('Prefix option for submitted value "other"'),
|
||||||
static::getPrefixOptions(),
|
static::getPrefixOptions()
|
||||||
FALSE
|
|
||||||
);
|
);
|
||||||
|
|
||||||
$payment_instruments = CRM_Twingle_Profile::paymentInstruments();
|
$payment_instruments = CRM_Twingle_Profile::paymentInstruments();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue