web/wp-content/plugins/wp-super-cache/wp-cache-base.php
author hurons@caf4f556-3d62-0410-8435-a86758001935
Mon, 01 Feb 2010 09:53:45 +0000
branchwordpress
changeset 124 5cb854c0ff5a
parent 109 03b0d1493584
child 194 32102edaa81b
permissions -rw-r--r--
clean other things

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

?>