Changeset 6219
- Timestamp:
- 06/09/08 01:13:04 (6 months ago)
- Files:
-
- 1 modified
-
trunk/components/Needlworks.Cache.PageCache.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/components/Needlworks.Cache.PageCache.php
r6177 r6219 112 112 $this->realNameOwner = $this->name."_".getBlogId()."_owner"; 113 113 $this->realNameGuest = $this->name."_".getBlogId(); 114 $this->filenameOwner = abs(crc32($this->realNameOwner)) ;115 $this->filenameGuest = abs(crc32($this->realNameGuest)) ;114 $this->filenameOwner = abs(crc32($this->realNameOwner)).'.cache'; 115 $this->filenameGuest = abs(crc32($this->realNameGuest)).'.cache'; 116 116 $this->filename = doesHaveOwnership() ? $this->filenameOwner : $this->filenameGuest; 117 117 $this->absoluteFilePathOwner = ROOT.'/cache/pageCache/'.getBlogId()."/".$this->filenameOwner;
