Changeset 5747

Show
Ignore:
Timestamp:
04/11/08 19:04:46 (9 months ago)
Author:
creorix
Message:

#455

  • REPLACE SQL에서 queryCell을 사용하는 문제 수정
Files:
1 modified

Legend:

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

    r5599 r5747  
    274274    function save() { 
    275275        global $database; 
    276         if($this->_isChanged) return POD::queryCell("REPLACE INTO {$database['prefix']}PageCacheLog VALUES(".$this->_gBlogId.", 'globalCacheStorage', '".POD::escapeString(serialize($this->_gCacheStorage[$this->_gBlogId]))."')"); 
     276        if($this->_isChanged) return POD::query("REPLACE INTO {$database['prefix']}PageCacheLog VALUES(".$this->_gBlogId.", 'globalCacheStorage', '".POD::escapeString(serialize($this->_gCacheStorage[$this->_gBlogId]))."')"); 
    277277    } 
    278278