dartiss / transient-cleaner

WordPress plugin to clean expired transients from your options table.

Home Page:https://wordpress.org/plugins/artiss-transient-cleaner/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Fix multisite transient count

dartiss opened this issue · comments

When multisite is active, this plugin combines the $wpdb->options count and the $wpdb->sitemeta using string concatenation instead of addition. So 6129 and 42 becomes 612,942 transients. Please change your .= to += on lines 72/73 of options-general.php!

https://wordpress.org/support/topic/multisite-transient-count/

Fixed in #22