Use WC_Cache_Helper::get_cache_prefix for prefixing webhook count cache, fixes issue with cache not clearing when incrementing the prefix.

This commit is contained in:
Gerhard 2019-05-15 10:47:50 +02:00
parent a0e5234be2
commit 3d57a4b474
1 changed files with 3 additions and 3 deletions

View File

@ -370,13 +370,13 @@ class WC_Webhook_Data_Store implements WC_Webhook_Data_Store_Interface {
*/
protected function get_webhook_count( $status = 'active' ) {
global $wpdb;
$count = wp_cache_get( $status . '_count', 'webhooks' );
$cache_key = WC_Cache_Helper::get_cache_prefix( 'webhooks' ) . $status . '_count';
$count = wp_cache_get( $cache_key, 'webhooks' );
if ( false === $count ) {
$count = absint( $wpdb->get_var( $wpdb->prepare( "SELECT count( webhook_id ) FROM {$wpdb->prefix}wc_webhooks WHERE `status` = %s;", $status ) ) );
wp_cache_add( $status . '_count', $count, 'webhooks' );
wp_cache_add( $cache_key, $count, 'webhooks' );
}
return $count;