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', '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();