This commit is contained in:
Renato Covarrubias 2013-08-31 14:46:48 -04:00
commit 6cae291e3b
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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();

View File

@ -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();