diff options
author | redmatrix <git@macgirvin.com> | 2016-07-01 20:34:00 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-07-01 20:34:00 -0700 |
commit | 59474673395242f472124968e962702fb6b5f023 (patch) | |
tree | 3ecf3d5719d1943061b0be81851274f400aad3a3 /include/bb2diaspora.php | |
parent | bb5ec8cfb89bc5cc1532ffacee22e21aa9415e23 (diff) | |
download | volse-hubzilla-59474673395242f472124968e962702fb6b5f023.tar.gz volse-hubzilla-59474673395242f472124968e962702fb6b5f023.tar.bz2 volse-hubzilla-59474673395242f472124968e962702fb6b5f023.zip |
use small photo for Diaspora attribution correction; the medium looks awkward in the D* stream.
Diffstat (limited to 'include/bb2diaspora.php')
-rw-r--r-- | include/bb2diaspora.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php index c7d0e56b1..16f67dc4a 100644 --- a/include/bb2diaspora.php +++ b/include/bb2diaspora.php @@ -302,11 +302,11 @@ function bb2diaspora_itemwallwall(&$item) { } } - if(($wallwall) && (is_array($item['author'])) && $item['author']['xchan_url'] && $item['author']['xchan_name'] && $item['author']['xchan_photo_m']) { + if(($wallwall) && (is_array($item['author'])) && $item['author']['xchan_url'] && $item['author']['xchan_name'] && $item['author']['xchan_photo_s']) { logger('bb2diaspora_itemwallwall: wall to wall post',LOGGER_DEBUG); // post will come across with the owner's identity. Throw a preamble onto the post to indicate the true author. $item['body'] = "\n\n" - . '[img]' . $item['author']['xchan_photo_m'] . '[/img]' + . '[img]' . $item['author']['xchan_photo_s'] . '[/img]' . '[url=' . $item['author']['xchan_url'] . ']' . $item['author']['xchan_name'] . '[/url]' . "\n\n" . $item['body']; } |