remove unnecessary default values

This commit is contained in:
Marc Michalsky 2023-08-03 14:58:24 +02:00
parent f811af1dbf
commit a7c3f34b21
Signed by untrusted user who does not match committer: marc.koch
GPG key ID: 12406554CFB028B9

View file

@ -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();