diff options
| author | Christian Fowler <spider@viovio.com> | 2011-06-26 17:59:08 -0400 |
|---|---|---|
| committer | Christian Fowler <spider@viovio.com> | 2011-06-26 17:59:08 -0400 |
| commit | d921a364f7eba7df08dc54042ee5adc2f957abb0 (patch) | |
| tree | e16f5d9c2a3b55c64417c148483c1d8400444ec6 /fisheye_rss.php | |
| parent | 0fb1681f889704b283d518eca5af2e8ee9063af3 (diff) | |
| download | fisheye-d921a364f7eba7df08dc54042ee5adc2f957abb0.tar.gz fisheye-d921a364f7eba7df08dc54042ee5adc2f957abb0.tar.bz2 fisheye-d921a364f7eba7df08dc54042ee5adc2f957abb0.zip | |
convert liberty_files.storage_path to liberty_files.file_name to remove all hardcoded pathing information. legacy path is supported via basename
Diffstat (limited to 'fisheye_rss.php')
| -rw-r--r-- | fisheye_rss.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fisheye_rss.php b/fisheye_rss.php index 7fd1980..68dbb8d 100644 --- a/fisheye_rss.php +++ b/fisheye_rss.php @@ -54,7 +54,7 @@ if( !$gBitUser->hasPermission( 'p_fisheye_view' ) ) { $item = new FeedItem(); $item->title = $feed['title']; $item->link = $feed['display_url']; - $item->description = '<a href="'.$feed['display_url'].'"><img src="'.liberty_fetch_thumbnail_url( array( 'storage_path' => $feed['storage_path'], 'size' => 'medium' )).'" /></a>'; + $item->description = '<a href="'.$feed['display_url'].'"><img src="'.$feed['thumbnail_url'].'" /></a>'; $item->description .= '<p>'.$feed['data'].'</p>'; $item->date = ( int )$feed['last_modified']; |
