From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 22 Mar 2023 03:17:38 +0000 (-0400) Subject: spelling: encapsulated X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a20cb0fe98a534636ad64e311df67d8a5166eb34;hp=aadaea75666487b5f95cf6e5e6e316cab0cfe2b9;p=friendica.git spelling: encapsulated Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- diff --git a/src/Content/Item.php b/src/Content/Item.php index 45890f4047..0a606e057a 100644 --- a/src/Content/Item.php +++ b/src/Content/Item.php @@ -685,11 +685,11 @@ class Item // If it is a reshared post then reformat it to avoid display problems with two share elements if (!empty($shared)) { - if (!empty($shared['guid']) && ($encaspulated_share = $this->createSharedPostByGuid($shared['guid'], true))) { + if (!empty($shared['guid']) && ($encapsulated_share = $this->createSharedPostByGuid($shared['guid'], true))) { if (!empty(BBCode::fetchShareAttributes($item['body']))) { - $item['body'] = preg_replace("/\[share.*?\](.*)\[\/share\]/ism", $encaspulated_share, $item['body']); + $item['body'] = preg_replace("/\[share.*?\](.*)\[\/share\]/ism", $encapsulated_share, $item['body']); } else { - $item['body'] .= $encaspulated_share; + $item['body'] .= $encapsulated_share; } } $item['body'] = HTML::toBBCode(BBCode::convertForUriId($item['uri-id'], $item['body'], BBCode::ACTIVITYPUB));