]> git.mxchange.org Git - friendica.git/commitdiff
Fix code standards
authorMichael <heluecht@pirati.ca>
Sat, 2 Sep 2023 19:37:20 +0000 (19:37 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 2 Sep 2023 19:37:20 +0000 (19:37 +0000)
src/Module/Conversation/Channel.php
src/Module/Update/Channel.php

index 06340f024af14aa4380651ef504773f1eb43681d..3b0b338b5c0d3feb5eb755a98d3b7d0be51853f5 100644 (file)
@@ -16,6 +16,7 @@
  *
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
 
 namespace Friendica\Module\Conversation;
index aceeae15a5456f54ff0fae154a97936834876b1a..998fb8bf0ef4726306d3e34b13805dd4f165fad4 100644 (file)
@@ -17,7 +17,6 @@
  * You should have received a copy of the GNU Affero General Public License
  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  *
- * 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);