From: Hypolite Petovan Date: Sun, 22 Apr 2018 15:43:27 +0000 (-0400) Subject: Uncomment some code in ItemContent::getPlaintextPost X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d977ff78df84db21c5310cff9372ea589da65ab0;p=friendica.git Uncomment some code in ItemContent::getPlaintextPost - I have no idea what I'm doing --- diff --git a/src/Model/ItemContent.php b/src/Model/ItemContent.php index fe256d3e76..21dbd34d0a 100644 --- a/src/Model/ItemContent.php +++ b/src/Model/ItemContent.php @@ -160,9 +160,8 @@ class ItemContent extends BaseObject } elseif (!isset($post['url'])) { $limit = $limit - 23; $post['url'] = $item['plink']; - // Which purpose has this line? It is now uncommented, but left as a reminder - //} elseif (strpos($b['body'], '[share') !== false) { - // $post['url'] = $b['plink']; + } elseif (strpos($item['body'], '[share') !== false) { + $post['url'] = $item['plink']; } elseif (PConfig::get($item['uid'], 'system', 'no_intelligent_shortening')) { $post['url'] = $item['plink']; }