]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Conversation/Network.php
spelling: however
[friendica.git] / src / Module / Conversation / Network.php
index 6670e7bb86aac3549e89c85c7693291b6a42a937..5f8f925a367222cf7b0754e78ba72321c7a92d70 100644 (file)
@@ -23,6 +23,7 @@ namespace Friendica\Module\Conversation;
 
 use Friendica\BaseModule;
 use Friendica\Content\BoundariesPager;
+use Friendica\Content\Conversation;
 use Friendica\Content\ForumManager;
 use Friendica\Content\Nav;
 use Friendica\Content\Widget;
@@ -119,7 +120,7 @@ class Network extends BaseModule
                        $content = '';
 
                        if (self::$forumContactId) {
-                               // If self::$forumContactId belongs to a communitity forum or a privat goup,.add a mention to the status editor
+                               // If self::$forumContactId belongs to a community forum or a privat goup,.add a mention to the status editor
                                $condition = ["`id` = ? AND `contact-type` = ?", self::$forumContactId, Contact::TYPE_COMMUNITY];
                                $contact = DBA::selectFirst('contact', ['addr'], $condition);
                                if (!empty($contact['addr'])) {
@@ -200,7 +201,7 @@ class Network extends BaseModule
                        $ordering = '`commented`';
                }
 
-               $o .= DI::conversation()->create($items, 'network', false, false, $ordering, DI::userSession()->getLocalUserId());
+               $o .= DI::conversation()->create($items, Conversation::MODE_NETWORK, false, false, $ordering, DI::userSession()->getLocalUserId());
 
                if (DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'infinite_scroll')) {
                        $o .= HTML::scrollLoader();