From 5f0a3d392a679982c31a1866acdfd39a4c5f208b Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 2 Sep 2023 19:37:20 +0000 Subject: [PATCH] Fix code standards --- src/Module/Conversation/Channel.php | 1 + src/Module/Update/Channel.php | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Module/Conversation/Channel.php b/src/Module/Conversation/Channel.php index 06340f024a..3b0b338b5c 100644 --- a/src/Module/Conversation/Channel.php +++ b/src/Module/Conversation/Channel.php @@ -16,6 +16,7 @@ * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . + * */ namespace Friendica\Module\Conversation; diff --git a/src/Module/Update/Channel.php b/src/Module/Update/Channel.php index aceeae15a5..998fb8bf0e 100644 --- a/src/Module/Update/Channel.php +++ b/src/Module/Update/Channel.php @@ -17,7 +17,6 @@ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * - * See update_profile.php for documentation */ namespace Friendica\Module\Update; @@ -36,11 +35,11 @@ class Channel extends ChannelModule { protected function rawContent(array $request = []) { - $this->parseRequest(); + $this->parseRequest($request); $o = ''; if (!empty($request['force'])) { - $o = DI::conversation()->render(self::getItems(), Conversation::MODE_CHANNEL, true, false, 'created', DI::userSession()->getLocalUserId()); + $o = DI::conversation()->render(self::getItems($request), Conversation::MODE_CHANNEL, true, false, 'created', DI::userSession()->getLocalUserId()); } System::htmlUpdateExit($o);