Show
Ignore:
Timestamp:
06/05/08 13:15:41 (7 months ago)
Author:
inureyes
Message:

#193

  • ATOM 전체 feed를 갱신하는 부분의 루틴 추가
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/model/blog.feed.php

    r6170 r6178  
    467467} 
    468468 
    469 function clearRSS() { 
     469function clearFeed() { 
    470470    if (file_exists(ROOT . "/cache/rss/".getBlogId().".xml")) 
    471471        @unlink(ROOT . "/cache/rss/".getBlogId().".xml"); 
     472    if (file_exists(ROOT . "/cache/atom/".getBlogId().".xml")) 
     473        @unlink(ROOT . "/cache/atom/".getBlogId().".xml"); 
    472474} 
    473475