diff --git a/CHANGELOG.md b/CHANGELOG.md index 28d5e04e..667bc779 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ This is an alpha version! The changes listed here are not final. - Updated package dependencies. ### Fixed +- Super Cache: Align detection of Boost installs with activation of that plugin - Super Cache: make sure plugins links is an array before using it. - Super Cache: remove the preload interval based on the post count. Preload as often as you want. diff --git a/wp-cache.php b/wp-cache.php index 352bacc9..ee74b811 100644 --- a/wp-cache.php +++ b/wp-cache.php @@ -339,7 +339,7 @@ function wpsc_is_boost_installed() { $plugins = array_keys( get_plugins() ); foreach ( $plugins as $plugin ) { - if ( str_contains( $plugin, 'jetpack-boost.php' ) ) { + if ( str_contains( $plugin, 'jetpack-boost/jetpack-boost.php' ) ) { return true; } }