Merge pull request #21715 from angelleye/21714
Sets signature field type to password for security, resolves #21714
This commit is contained in:
commit
00d254ac18
|
@ -153,7 +153,7 @@ return array(
|
|||
),
|
||||
'api_signature' => array(
|
||||
'title' => __( 'Live API signature', 'woocommerce' ),
|
||||
'type' => 'text',
|
||||
'type' => 'password',
|
||||
'description' => __( 'Get your API credentials from PayPal.', 'woocommerce' ),
|
||||
'default' => '',
|
||||
'desc_tip' => true,
|
||||
|
@ -177,7 +177,7 @@ return array(
|
|||
),
|
||||
'sandbox_api_signature' => array(
|
||||
'title' => __( 'Sandbox API signature', 'woocommerce' ),
|
||||
'type' => 'text',
|
||||
'type' => 'password',
|
||||
'description' => __( 'Get your API credentials from PayPal.', 'woocommerce' ),
|
||||
'default' => '',
|
||||
'desc_tip' => true,
|
||||
|
|
Loading…
Reference in New Issue