input to button for submit in wc-template-functions.php

This commit is contained in:
Gerhard Potgieter 2017-11-07 10:40:28 +02:00
parent 2171ae7c0a
commit e0a55cb8dd
1 changed files with 1 additions and 1 deletions

View File

@ -2050,7 +2050,7 @@ if ( ! function_exists( 'woocommerce_form_field' ) ) {
$field .= '</select>';
$field .= '<noscript><input type="submit" name="woocommerce_checkout_update_totals" value="' . esc_attr__( 'Update country', 'woocommerce' ) . '" /></noscript>';
$field .= '<noscript><button type="submit" name="woocommerce_checkout_update_totals" value="' . esc_attr__( 'Update country', 'woocommerce' ) . '">' . esc_html__( 'Update country', 'woocommerce' ) . '</button></noscript>';
}