diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-10-14 23:07:49 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-10-14 23:07:49 +0200 |
commit | ca35db76b8a61f674fc745e5be01138fe4680f99 (patch) | |
tree | 40c9303dc8ee7a863685d4e9e7d09f67cf546886 | |
parent | b6eded11193e84bafc8918eac3566e114ee17f01 (diff) | |
download | volse-hubzilla-ca35db76b8a61f674fc745e5be01138fe4680f99.tar.gz volse-hubzilla-ca35db76b8a61f674fc745e5be01138fe4680f99.tar.bz2 volse-hubzilla-ca35db76b8a61f674fc745e5be01138fe4680f99.zip |
wrong variable
-rw-r--r-- | include/conversation.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/conversation.php b/include/conversation.php index f1a7225b8..881b720bf 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -681,7 +681,7 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional', $ $body = prepare_body($item,true); - $is_photo = ((($item['resource_type'] == 'photo') && (feature_enabled($conv->get_profile_owner(),'large_photos'))) ? true : false); + $is_photo = ((($item['resource_type'] == 'photo') && (feature_enabled($profile_owner,'large_photos'))) ? true : false); $has_tags = (($body['tags'] || $body['categories'] || $body['mentions'] || $body['attachments'] || $body['folders']) ? true : false); $tmp_item = array( |