diff options
author | Greg Froese <greg.froese@gmail.com> | 2009-05-20 14:22:06 +0000 |
---|---|---|
committer | Greg Froese <greg.froese@gmail.com> | 2009-05-20 14:22:06 +0000 |
commit | b5180462ce397d1a6c0c38097f3b2ac4daf04761 (patch) | |
tree | 5bd67e6b2788e173e60bc82f9e4ec740e016d515 /views | |
parent | 0d12092d4c5ca62247fe8495dbb78adfc134691e (diff) | |
download | elgg-b5180462ce397d1a6c0c38097f3b2ac4daf04761.tar.gz elgg-b5180462ce397d1a6c0c38097f3b2ac4daf04761.tar.bz2 |
get exif data directly from file if non was recorded during upload
Diffstat (limited to 'views')
-rw-r--r-- | views/default/object/image.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/views/default/object/image.php b/views/default/object/image.php index b65dc858e..d9204377f 100644 --- a/views/default/object/image.php +++ b/views/default/object/image.php @@ -187,11 +187,11 @@ if ($photo_tags) { ?> <div id="tidypics_breadcrumbs"> - <?php - $exif = tp_exif_formatted($file_guid); - if($exif) echo $exif; - ?> - </div> + <?php + $exif = tp_exif_formatted($file_guid); + if($exif) echo $exif; + ?> + </div> <div id="tidypics_info"> <?php if (!is_null($tags)) { ?> <div class="object_tag_string"><?php echo elgg_view('output/tags',array('value' => $tags));?></div> |