* Mage_Core_Model_Cache::processRequest(). * * @param string $content * @return string | false */ public function extractContent($content) { /** * if content has been fetched from cache (FPC had a cache hit) the * HTTP headers have been already set by the FPC. However if a * NO_CACHE cookie is present we need to make sure the TTL is 0 as * it might cache with a TTL > 0 which is a logical constraint. */ if (!empty($content)) { Phoenix_VarnishCache_Helper_Cache::sanitizeCacheControlHeader(); } return $content; } }