]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Item/Compose.php
Normalize base URL usage in admin templates
[friendica.git] / src / Module / Item / Compose.php
index 6521ddc91a9c4543706c81e2fe5b624d660dcdbf..68b14b97d69fc6f98b348c0e77b5df603e579988 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
  *
@@ -40,7 +40,7 @@ use Friendica\Util\Temporal;
 
 class Compose extends BaseModule
 {
-       public function post()
+       protected function post(array $request = [])
        {
                if (!empty($_REQUEST['body'])) {
                        $_REQUEST['return'] = 'network';
@@ -51,7 +51,7 @@ class Compose extends BaseModule
                }
        }
 
-       public function content(): string
+       protected function content(array $request = []): string
        {
                if (!local_user()) {
                        return Login::form('compose', false);