Changeset 6219

Show
Ignore:
Timestamp:
06/09/08 01:13:04 (6 months ago)
Author:
inureyes
Message:

#949

  • pageCache에서 사용하는 백업파일의 확장자를 지정.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/components/Needlworks.Cache.PageCache.php

    r6177 r6219  
    112112        $this->realNameOwner = $this->name."_".getBlogId()."_owner"; 
    113113        $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'; 
    116116        $this->filename = doesHaveOwnership() ? $this->filenameOwner : $this->filenameGuest; 
    117117        $this->absoluteFilePathOwner = ROOT.'/cache/pageCache/'.getBlogId()."/".$this->filenameOwner;