Bug: Product taxonomy synchronization term_id type casting
-
File: class-wcml-synchronize-product-data.php
Function: wcml_update_term_count_by_ids
Line: 251
Needs to type cast term_id as integer:
Original:
$terms_ids_array[] = $translated_term->term_id;
Change to:
$terms_ids_array[] = (int)$translated_term->term_id;
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Bug: Product taxonomy synchronization term_id type casting’ is closed to new replies.