]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Update/Community.php
Removed redundant maximagesize = INF statements
[friendica.git] / src / Module / Update / Community.php
index f42274953d83e93cd228153e5df6c8360eb53302..22d42c28ac4319b63b7bae0af57b517cab8008fc 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -33,13 +33,13 @@ use Friendica\Module\Conversation\Community as CommunityModule;
  */
 class Community extends CommunityModule
 {
-       public function rawContent()
+       protected function rawContent(array $request = [])
        {
-               self::parseRequest();
+               $this->parseRequest();
 
                $o = '';
-               if (!empty($_GET['force']) || !DI::pConfig()->get(local_user(), 'system', 'no_auto_update')) {
-                       $o = DI::conversation()->create(self::getItems(), 'community', true, false, 'commented', local_user());
+               if (!empty($_GET['force']) || !DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'no_auto_update')) {
+                       $o = DI::conversation()->create(self::getItems(), 'community', true, false, 'commented', DI::userSession()->getLocalUserId());
                }
 
                System::htmlUpdateExit($o);