web/wp-content/plugins/wp-super-cache/wp-cache-base.php
branchwordpress
changeset 109 03b0d1493584
child 194 32102edaa81b
equal deleted inserted replaced
-1:000000000000 109:03b0d1493584
       
     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 ?>