Changeset 3289

Show
Ignore:
Timestamp:
05/17/07 00:56:04 (20 months ago)
Author:
inureyes
Message:

#391

  • 다중 사용자 경로 구분의 경우 이미지 경로가 잘못될 수 있는 문제 수정
Files:
1 modified

Legend:

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

    r3107 r3289  
    1717    if (!empty($blog['logo']) && file_exists(ROOT."/attach/$owner/{$blog['logo']}")) { 
    1818        $logoInfo = getimagesize(ROOT."/attach/$owner/{$blog['logo']}"); 
    19         $channel['url'] = $defaultURL."/attach/".$owner."/".$blog['logo']; 
     19        $channel['url'] = $serviceURL."/attach/".$owner."/".$blog['logo']; 
    2020        $channel['width'] = $logoInfo[0]; 
    2121        $channel['height'] = $logoInfo[1];