diff --git a/plugins/woocommerce/changelog/pr-36402 b/plugins/woocommerce/changelog/pr-36402 new file mode 100644 index 00000000000..40606ee41ea --- /dev/null +++ b/plugins/woocommerce/changelog/pr-36402 @@ -0,0 +1,4 @@ +Significance: patch +Type: tweak + +Fix a minor code typo, no change in functionality \ No newline at end of file diff --git a/plugins/woocommerce/includes/data-stores/class-wc-product-data-store-cpt.php b/plugins/woocommerce/includes/data-stores/class-wc-product-data-store-cpt.php index d215e972773..1e5590b4d6d 100644 --- a/plugins/woocommerce/includes/data-stores/class-wc-product-data-store-cpt.php +++ b/plugins/woocommerce/includes/data-stores/class-wc-product-data-store-cpt.php @@ -2120,7 +2120,7 @@ class WC_Product_Data_Store_CPT extends WC_Data_Store_WP implements WC_Object_Da global $wpdb; return $wpdb->prepare( " - SELECT COALESCE ( MAX( meta_value ), 0 ) FROM $wpdb->postmeta as meta_table + SELECT COALESCE( MAX( meta_value ), 0 ) FROM $wpdb->postmeta as meta_table WHERE meta_table.meta_key = '_stock' AND meta_table.post_id = %d ",