Fix typo stock quantity check

There is a typo in `COALESCE (` which is causing an error when this function is called. The error is present on the checkout page when clicking on payment.
This commit is contained in:
issanyo 2023-01-12 22:08:46 +01:00 committed by GitHub
parent 04d371b7e0
commit c7fccfd264
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2120,7 +2120,7 @@ class WC_Product_Data_Store_CPT extends WC_Data_Store_WP implements WC_Object_Da
global $wpdb; global $wpdb;
return $wpdb->prepare( 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' WHERE meta_table.meta_key = '_stock'
AND meta_table.post_id = %d AND meta_table.post_id = %d
", ",