Index: uc_cart.module =================================================================== --- uc_cart.module (revision 33560) +++ uc_cart.module (working copy) @@ -403,7 +403,14 @@ case 'view': // 0 = Default shopping cart block. if ($delta == 0) { - $cachable = !$user->uid && variable_get('cache', CACHE_DISABLED) != CACHE_DISABLED; + $cachable = TRUE; + if (function_exists('drupal_page_is_cacheable')) { + $cachable = drupal_page_is_cacheable(); + } + else { + $cachable = !$user->uid && variable_get('cache', CACHE_DISABLED) != CACHE_DISABLED; + } + $uc_cart_path = drupal_get_path('module', 'uc_cart'); $product_count = count(uc_cart_get_contents());