diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-06-06 20:14:42 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-06-06 20:14:42 +0000 |
commit | 8ef053df0c982c2e2ffddc04a89b578ec36ec969 (patch) | |
tree | f066d2d74be913dcde347b4f26babf8aab2afe4a /actions | |
parent | b1ec29e1f220e64a6b2ac73d95b847b0b9033a9d (diff) | |
download | elgg-8ef053df0c982c2e2ffddc04a89b578ec36ec969.tar.gz elgg-8ef053df0c982c2e2ffddc04a89b578ec36ec969.tar.bz2 |
added admin setting for exif
Diffstat (limited to 'actions')
-rw-r--r-- | actions/settings.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/actions/settings.php b/actions/settings.php index 29a77577f..79839ceef 100644 --- a/actions/settings.php +++ b/actions/settings.php @@ -31,6 +31,11 @@ else
set_plugin_setting('tagging', 'disabled', 'tidypics');
+ if (is_array(get_input('exif')))
+ set_plugin_setting('exif', 'enabled', 'tidypics');
+ else
+ set_plugin_setting('exif', 'disabled', 'tidypics');
+
// image sizes
$image_sizes = array();
|