web/wp-content/plugins/wp-super-cache/wp-cache-base.php
branchwordpress
changeset 109 03b0d1493584
child 194 32102edaa81b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/plugins/wp-super-cache/wp-cache-base.php	Wed Dec 23 17:55:33 2009 +0000
@@ -0,0 +1,13 @@
+<?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;
+	}
+}
+
+?>