diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-06-30 01:03:43 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-06-30 01:03:43 +0000 |
commit | db92957e150c3cd86dfee9f51056c0c5101e575e (patch) | |
tree | 67f20011ff538afdfdabd487726dd6d08b5e59fe /views/default | |
parent | 1224dc309fd8451d56e8959e1e6a3cc59ba8803e (diff) | |
download | elgg-db92957e150c3cd86dfee9f51056c0c5101e575e.tar.gz elgg-db92957e150c3cd86dfee9f51056c0c5101e575e.tar.bz2 |
changed ratings and exif to default off
Diffstat (limited to 'views/default')
-rw-r--r-- | views/default/object/image.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/object/image.php b/views/default/object/image.php index c99bb1ed9..e38576abf 100644 --- a/views/default/object/image.php +++ b/views/default/object/image.php @@ -224,7 +224,7 @@ if ($photo_tags) { } - if (get_plugin_setting('exif', 'tidypics') != "disabled") { + if (get_plugin_setting('exif', 'tidypics') == "enabled") { ?> <?php echo elgg_view('tidypics/exif', array('guid'=> $file_guid)); ?> <?php } ?> @@ -232,7 +232,7 @@ if ($photo_tags) { <?php if (!is_null($tags)) { ?> <div class="object_tag_string"><?php echo elgg_view('output/tags',array('value' => $tags));?></div> <?php } - if (get_plugin_setting('photo_ratings', 'tidypics') != "disabled") { + if (get_plugin_setting('photo_ratings', 'tidypics') == "enabled") { ?> <div id="rate_container"> <?php echo elgg_view('rate/rate', array('entity'=> $vars['entity'])); ?> |