From: Michael Date: Mon, 24 May 2021 08:08:01 +0000 (+0000) Subject: Calling it static X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6e1402f7bd5602cd72fbbfb2eed9ffd22f57f0db;p=friendica.git Calling it static --- diff --git a/src/Util/HTTPInputData.php b/src/Util/HTTPInputData.php index 490dda5f66..c1dba263c2 100644 --- a/src/Util/HTTPInputData.php +++ b/src/Util/HTTPInputData.php @@ -132,7 +132,7 @@ class HTTPInputData $filename = $matches[4] ?? ''; if (!empty($filename)) { - $files[$name] = self::fetchFileData($stream, $boundary, $headers, $filename); + $files[$name] = static::fetchFileData($stream, $boundary, $headers, $filename); return ['variables' => $variables, 'files' => $files]; } else { $variables = self::fetchVariables($stream, $boundary, $headers, $name, $variables);