home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Plugins / wp-super-cache / wp-cache-base.php < prev    next >
PHP Script  |  2008-02-18  |  286b  |  14 lines

  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. ?>
  14.