diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-12-11 12:30:23 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-12-11 12:30:23 +0000 |
commit | 3bd5e571364385cb93a93b8526e1e90e56db7b49 (patch) | |
tree | 1536e0b02dc1a4739368a2e83cb0ec971d0f2ee6 /views/rss/object/album.php | |
parent | 622dca92b2a8eb399e7b2b44a682d7dd682dc68c (diff) | |
download | elgg-3bd5e571364385cb93a93b8526e1e90e56db7b49.tar.gz elgg-3bd5e571364385cb93a93b8526e1e90e56db7b49.tar.bz2 |
moved download action to download page
Diffstat (limited to 'views/rss/object/album.php')
-rw-r--r-- | views/rss/object/album.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/rss/object/album.php b/views/rss/object/album.php index c66c0f7e9..c59f0e2d3 100644 --- a/views/rss/object/album.php +++ b/views/rss/object/album.php @@ -12,7 +12,7 @@ $base_url = $vars['url'] . 'mod/tidypics/thumbnail.php?file_guid=';
// use fullsize image
- $base_url_fullsize = $vars['url'] . 'action/tidypics/download?file_guid=';
+ $base_url_fullsize = $vars['url'] . 'pg/photos/download/';
// insert cover image if it exists image
if ($album->cover) {
@@ -52,7 +52,7 @@ <description><?php echo htmlentities($descr, ENT_QUOTES); ?></description>
<pubDate><?php echo date("r", $image->time_created); ?></pubDate>
<guid isPermaLink="true"><?php echo $image->getURL(); ?></guid>
- <media:content url="<?php echo $base_url_fullsize . $image->guid . '&view=inline'; ?>" medium="image" type="<?php echo $image->getMimeType(); ?>" />
+ <media:content url="<?php echo $base_url_fullsize . $image->guid . '/inline/'; ?>" medium="image" type="<?php echo $image->getMimeType(); ?>" />
<media:title><?php echo $image->title; ?></media:title>
<media:description><?php echo htmlentities($image->description); ?></media:description>
<media:thumbnail url="<?php echo $base_url . $image->guid . '&size=thumb'; ?>"></media:thumbnail>
|