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/default/object/image.php | |
parent | 622dca92b2a8eb399e7b2b44a682d7dd682dc68c (diff) | |
download | elgg-3bd5e571364385cb93a93b8526e1e90e56db7b49.tar.gz elgg-3bd5e571364385cb93a93b8526e1e90e56db7b49.tar.bz2 |
moved download action to download page
Diffstat (limited to 'views/default/object/image.php')
-rw-r--r-- | views/default/object/image.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/object/image.php b/views/default/object/image.php index dd52f872e..fb7a72ff8 100644 --- a/views/default/object/image.php +++ b/views/default/object/image.php @@ -150,7 +150,7 @@ $image_link = false; if (get_plugin_setting('download_link', 'tidypics') != "disabled") { // admin allows downloads so default to inline download link - $image_link = $vars['url'] . "action/tidypics/download?file_guid=" . $image_guid . "&view=inline"; + $image_link = $vars['url'] . "pg/photos/download/{$image_guid}/inline/"; } // does any plugin want to override the link $image_link = trigger_plugin_hook('tp_image_link', 'image', $image, $image_link); |