]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Attach.php
Use rawContent for Special Options to avoid a protected options() method
[friendica.git] / src / Module / Attach.php
index a4bb9b42215cbbcd044d2e843ff0c21576ac5c63..60d1015b0aeb68295b05c2f9830973af958157bd 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
  *
@@ -34,14 +34,14 @@ class Attach extends BaseModule
        /**
         * Return to user an attached file given the id
         */
-       public static function rawContent(array $parameters = [])
+       protected function rawContent(array $request = [])
        {
                $a = DI::app();
-               if (empty($parameters['item'])) {
+               if (empty($this->parameters['item'])) {
                        throw new \Friendica\Network\HTTPException\BadRequestException();
                }
 
-               $item_id = intval($parameters['item']);
+               $item_id = intval($this->parameters['item']);
 
                // Check for existence
                $item = MAttach::exists(['id' => $item_id]);