web/wp-content/plugins/wp-super-cache/wp-cache-base.php
author hurons@caf4f556-3d62-0410-8435-a86758001935
Mon, 01 Feb 2010 15:57:02 +0000
branchwordpress
changeset 125 6d47ba214f30
parent 109 03b0d1493584
child 194 32102edaa81b
permissions -rw-r--r--
- good sql DB - little modification

<?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;
	}
}

?>