]> git.mxchange.org Git - friendica.git/commitdiff
Fix type hint typo in Protocol\Email::messageGetPart
authorHypolite Petovan <hypolite@mrpetovan.com>
Tue, 12 Jul 2022 03:05:13 +0000 (23:05 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Tue, 12 Jul 2022 03:05:13 +0000 (23:05 -0400)
- Address https://github.com/friendica/friendica/issues/11724

src/Protocol/Email.php

index 042fca26d65109e17b91622fd9ce5918fe41cd96..75845184492da2595553c5693de10928ad2f2882 100644 (file)
@@ -221,7 +221,7 @@ class Email
         * @param string              $subtype sub type
         * @return string
         */
-       private static function messageGetPart($mbox, int $uid, $p, in $partno, string $subtype): string
+       private static function messageGetPart($mbox, int $uid, $p, int $partno, string $subtype): string
        {
                // $partno = '1', '2', '2.1', '2.1.3', etc for multipart, 0 if simple
                global $htmlmsg,$plainmsg,$charset,$attachments;