Just a quick heads up. Line 62 of wp-cache.php of 0.9.9.8 is
$wp_cache_is_home = ( is_front_page || is_home() );
when I assume it should be
$wp_cache_is_home = ( is_front_page() || is_home() );
Just a quick heads up. Line 62 of wp-cache.php of 0.9.9.8 is
$wp_cache_is_home = ( is_front_page || is_home() );
when I assume it should be
$wp_cache_is_home = ( is_front_page() || is_home() );
Thank you for catching that! That would explain why this wasn't being caught. I'll fix it in trunk.
This topic has been closed to new replies.