Merge branch 'master' of https://github.com/rnt/woocommerce
This commit is contained in:
commit
6cae291e3b
|
@ -9424,7 +9424,7 @@ msgstr "is geen geldig e-mailadres."
|
|||
# @ woocommerce
|
||||
#: includes/class-wc-checkout.php:510
|
||||
msgid "You must accept our Terms & Conditions."
|
||||
msgstr "U dient akkoord gaan onze Algemene Voorwaarden."
|
||||
msgstr "U dient akkoord te gaan met onze Algemene Voorwaarden."
|
||||
|
||||
# @ woocommerce
|
||||
#: includes/class-wc-checkout.php:519
|
||||
|
|
|
@ -1013,7 +1013,7 @@ class WC_Meta_Box_Product_Data {
|
|||
}
|
||||
|
||||
// Remove empty items in the array
|
||||
$values = array_filter( $values );
|
||||
$values = array_filter( $values, 'strlen' );
|
||||
|
||||
} else {
|
||||
$values = array();
|
||||
|
|
|
@ -458,7 +458,7 @@ function woocommerce_save_attributes() {
|
|||
}
|
||||
|
||||
// Remove empty items in the array
|
||||
$values = array_filter( $values );
|
||||
$values = array_filter( $values, 'strlen' );
|
||||
|
||||
} else {
|
||||
$values = array();
|
||||
|
|
Loading…
Reference in New Issue