diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-07-01 02:32:05 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-07-01 02:32:05 +0000 |
commit | bc15e7d35963c1ec3ce8c8387eea42238f1eb9aa (patch) | |
tree | afe7efb38054904e697111dbccead4bd3169a49f /views | |
parent | 38a8fe2df9c4c9f8f7c2b2abb3273617466a6393 (diff) | |
download | elgg-bc15e7d35963c1ec3ce8c8387eea42238f1eb9aa.tar.gz elgg-bc15e7d35963c1ec3ce8c8387eea42238f1eb9aa.tar.bz2 |
clicking on the image pulls up a large one now
Diffstat (limited to 'views')
-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 ba3bb0272..24c9dfd7a 100644 --- a/views/default/object/image.php +++ b/views/default/object/image.php @@ -201,7 +201,7 @@ if ($photo_tags) { </ul> </div> <div id="tidypics_image_wrapper"> - <?php echo '<img id="tidypics_image"' . ' src="' . $vars['url'] . 'mod/tidypics/thumbnail.php?file_guid=' . $file_guid . '&size=large" alt="' . $title . '"/>'; ?> + <?php echo "<a href=\"{$vars['url']}action/tidypics/download?file_guid={$file_guid}&view=inline\" title=\"{$title}\"><img id=\"tidypics_image\" src=\"{$vars['url']}mod/tidypics/thumbnail.php?file_guid={$file_guid}&size=large\" alt=\"{$title}\" /></a>"; ?> <div class="clearfloat"></div> </div> |