From f5fd99f7ea3cb397c71846742868c22893298d65 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 7 Jan 2023 18:51:28 +0000 Subject: [PATCH] Unbneeded strlen removed --- src/Content/Item.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Content/Item.php b/src/Content/Item.php index 968509dee..2518f4d31 100644 --- a/src/Content/Item.php +++ b/src/Content/Item.php @@ -876,7 +876,7 @@ class Item $post['allow_cid'] .= $this->aclFormatter->toString(Contact::getPublicIdByUserId($post['uid'])); } - if (strlen($post['allow_gid']) || strlen($post['allow_cid']) || strlen($post['deny_gid']) || strlen($post['deny_cid'])) { + if ($post['allow_gid'] || $post['allow_cid'] || $post['deny_gid'] || $post['deny_cid']) { $post['private'] = ItemModel::PRIVATE; } elseif ($this->pConfig->get($post['uid'], 'system', 'unlisted')) { $post['private'] = ItemModel::UNLISTED; @@ -898,7 +898,7 @@ class Item if (empty($attachment)) { continue; } - if (strlen($post['attach'])) { + if ($post['attach']) { $post['attach'] .= ','; } $post['attach'] .= Post\Media::getAttachElement($this->baseURL->get() . '/attach/' . $attachment['id'], @@ -1013,7 +1013,7 @@ class Item foreach ($recipients as $recipient) { $address = trim($recipient); - if (!strlen($address)) { + if (!$address) { continue; }