The caching wasn't working in the 1.3 version that I downloaded, so the following should fix it:
Compare: (<)C:\CVS_Local\press-releases\class\cls_fast_template.php (44885 bytes)
with: (>)C:\CVS_Local\press-releases\class\class.fast-template.1.3.0.php (46239 bytes)
691c691
< include $this->CACHING;
---
> include $this->CACHING . ".ft";
753,756c753,756
< if (!file_exists($fname)) {
< return false;
< }
< $expire_time = time() - filemtime($fname);
---
> if (!file_exists($fname.".ft")) {
> return false;
> }
> $expire_time = time() - filemtime($fname.".ft"); |