Changeset 1271

Show
Ignore:
Timestamp:
09/06/06 16:41:06 (2 years ago)
Author:
inureyes
Message:

#192 : RSS 피드에 프로필 이미지 추가

  • r1270 관련 오류 수정
  • 이미지 경로의 오류 수정
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • sandbox/lib/model/rss.php

    r1270 r1271  
    1414    if (!empty($blog['logo']) && file_exists(ROOT."/attach/$owner/{$blog['logo']}")) { 
    1515        $logoInfo = getimagesize(ROOT."/attach/$owner/{$blog['logo']}"); 
    16         $channel['url'] = $defaultURL."/attach/".$owner."/".$blog['logo']; 
     16        $channel['url'] = $serviceURL."/attach/".$owner."/".$blog['logo']; 
    1717        $channel['width'] = $logoInfo[0]; 
    1818        $channel['height'] = $logoInfo[1];