Fix undefined constant warning

This commit is contained in:
Eric Fawcett 2021-06-16 16:00:02 -04:00
parent 2003f39bad
commit 9f42ab646d
1 changed files with 4 additions and 4 deletions

View File

@ -156,10 +156,10 @@ if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', g
'class' => array('form-row-first carrier-name'),
'required' => true,
'options' => array(
'' => __('Select a carrier', carrieracct),
'UPS' => __('UPS', carrieracct),
'FedEx' => __('FedEx', carrieracct),
'DHL' => __('DHL', carrieracct),
'' => __('Select a carrier', 'carrieracct'),
'UPS' => __('UPS', 'carrieracct'),
'FedEx' => __('FedEx', 'carrieracct'),
'DHL' => __('DHL', 'carrieracct'),
)
), WC()->checkout->get_value( 'carrier_name' ));