Changeset 6177 for trunk/components/Needlworks.Cache.PageCache.php
- Timestamp:
- 06/05/08 13:12:29 (7 months ago)
- Files:
-
- 1 modified
-
trunk/components/Needlworks.Cache.PageCache.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/components/Needlworks.Cache.PageCache.php
r6030 r6177 423 423 $cache = new pageCache; 424 424 $cache->name = 'commentRSS_'.$entryId; 425 $cache->purge(); 425 $cache->purge(); 426 426 $cache->reset(); 427 427 $cache->name = 'commentRSS'; 428 428 $cache->purge(); 429 $cache->reset(); 430 $cache->name = 'commentATOM_'.$entryId; 431 $cache->purge(); 432 $cache->reset(); 433 $cache->name = 'commentATOM'; 434 $cache->purge(); 429 435 CacheControl::flushResponseRSS($entryId); 430 436 return true; … … 440 446 $cache->reset(); 441 447 $cache->name = 'trackbackRSS'; 448 $cache->purge(); 449 $cache->reset(); 450 $cache->name = 'trackbackATOM_'.$entryId; 451 $cache->purge(); 452 $cache->reset(); 453 $cache->name = 'trackbackATOM'; 442 454 $cache->purge(); 443 455 CacheControl::flushResponseRSS($entryId); … … 455 467 $cache->name = 'responseRSS'; 456 468 $cache->purge(); 469 $cache->reset(); 470 $cache->name = 'responseATOM_'.$entryId; 471 $cache->purge(); 472 $cache->reset(); 473 $cache->name = 'responseATOM'; 474 $cache->purge(); 457 475 return true; 458 476 } … … 462 480 $cache = new pageCache; 463 481 $cache->name = 'commentNotifiedRSS'; 482 $cache->purge(); 483 $cache->reset(); 484 $cache->name = 'commentNotifiedATOM'; 464 485 $cache->purge(); 465 486 return true;
