diff options
author | friendica <info@friendica.com> | 2015-01-23 03:25:40 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-23 03:25:40 -0800 |
commit | c49c96962fdcdb69a06d4f7e641d6ab9768b7ca4 (patch) | |
tree | 051f4f7b0b77f25a540c5df6c6cdfa313634f862 | |
parent | 0cdcc4bc500c082c7d87096cc6be9dfe7c5db2f5 (diff) | |
download | volse-hubzilla-c49c96962fdcdb69a06d4f7e641d6ab9768b7ca4.tar.gz volse-hubzilla-c49c96962fdcdb69a06d4f7e641d6ab9768b7ca4.tar.bz2 volse-hubzilla-c49c96962fdcdb69a06d4f7e641d6ab9768b7ca4.zip |
provide pref to set default photo resolution for posts to something other than 2. The only acceptable option is 1. (640)
-rw-r--r-- | include/photos.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/photos.php b/include/photos.php index 2393153c6..2e5e22968 100644 --- a/include/photos.php +++ b/include/photos.php @@ -256,6 +256,15 @@ function photo_upload($channel, $observer, $args) { else $tag = '[zmg]'; + $preferred = intval(get_pconfig($channel['channel_id'],'system','post_photores')); + if($preferred == 1) { + $tag = '[zmg]'; + if($r2) + $smallest = 1; + else + $smallest = 0; + } + $arr['body'] = '[zrl=' . z_root() . '/photos/' . $channel['channel_address'] . '/image/' . $photo_hash . ']' . $tag . z_root() . "/photo/{$photo_hash}-{$smallest}.".$ph->getExt() . '[/zmg]' . '[/zrl]'; |