Changeset 8095
- Timestamp:
- 03/26/08 14:59:06 (1 year ago)
- Files:
-
- branches/1.1/lib/filter/sfCacheFilter.class.php (modified) (1 diff)
- branches/1.1/lib/view/sfViewCacheManager.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/filter/sfCacheFilter.class.php
r7976 r8095 54 54 { 55 55 // execute this filter only once, if cache is set and no GET or POST parameters 56 if (!sfConfig::get('sf_cache') || count($_GET) || count($_POST))56 if (!sfConfig::get('sf_cache')) 57 57 { 58 58 $filterChain->execute(); branches/1.1/lib/view/sfViewCacheManager.class.php
r8092 r8095 360 360 public function isCacheable($internalUri) 361 361 { 362 if (count($_GET) || count($_POST)) 363 { 364 return false; 365 } 366 362 367 list($route_name, $params) = $this->controller->convertUrlStringToParameters($internalUri); 363 368

