Files
wordpress-skeleton/blog/wp-content/plugins/wp-super-cache/wp-cache-base.php
T
2010-02-17 13:12:39 -05:00

14 lines
286 B
PHP

<?php
$known_headers = array("Last-Modified", "Expires", "Content-Type", "Content-type", "X-Pingback", "ETag", "Cache-Control", "Pragma");
if (!class_exists('CacheMeta')) {
class CacheMeta {
var $dynamic = false;
var $headers = array();
var $uri = '';
var $post = 0;
}
}
?>