wp-super-cache
Last commit date
plugins
17 years ago
Changelog.txt
16 years ago
advanced-cache.php
17 years ago
readme.txt
16 years ago
uninstall.php
16 years ago
wp-cache-base.php
18 years ago
wp-cache-config-sample.php
16 years ago
wp-cache-phase1.php
16 years ago
wp-cache-phase2.php
16 years ago
wp-cache.php
16 years ago
wp-cache-base.php
14 lines
| 1 | <?php |
| 2 | $known_headers = array("Last-Modified", "Expires", "Content-Type", "Content-type", "X-Pingback", "ETag", "Cache-Control", "Pragma"); |
| 3 | |
| 4 | if (!class_exists('CacheMeta')) { |
| 5 | class CacheMeta { |
| 6 | var $dynamic = false; |
| 7 | var $headers = array(); |
| 8 | var $uri = ''; |
| 9 | var $post = 0; |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | ?> |
| 14 |