From: Roland Häder Date: Mon, 12 Sep 2022 21:31:36 +0000 (+0200) Subject: Fixed: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=85ed0742cf801b95e0f554b441a8c424c5155806;p=friendica.git Fixed: - Content\Item versus Model\Item is really confusing! --- diff --git a/src/Content/Conversation.php b/src/Content/Conversation.php index 0f0259aaac..2e8439a0b9 100644 --- a/src/Content/Conversation.php +++ b/src/Content/Conversation.php @@ -369,7 +369,7 @@ class Conversation '$permset' => $this->l10n->t('Permission settings'), '$shortpermset' => $this->l10n->t('Permissions'), '$wall' => $notes_cid ? 0 : 1, - '$posttype' => $notes_cid ? Item::PT_PERSONAL_NOTE : Item::PT_ARTICLE, + '$posttype' => $notes_cid ? ItemModel::PT_PERSONAL_NOTE : ItemModel::PT_ARTICLE, '$content' => $x['content'] ?? '', '$post_id' => $x['post_id'] ?? '', '$baseurl' => $this->baseURL->get(true),