@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

PHPMailer: Remove duplicate array keys

Summary:
`'doc'` is listed twice in the `$mimes` array. Remove one key.

The second key was also removed in https://github.com/PHPMailer/PHPMailer/commit/6f919df65e80023fce4eab58832b6035b4a41935.

Test Plan: Read/grep the code.

Reviewers: O1 Blessed Committers, avivey

Reviewed By: O1 Blessed Committers, avivey

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D25666

-2
-1
externals/phpmailer/class.phpmailer-lite.php
··· 1980 1980 'mov' => 'video/quicktime', 1981 1981 'avi' => 'video/x-msvideo', 1982 1982 'movie' => 'video/x-sgi-movie', 1983 - 'doc' => 'application/msword', 1984 1983 'word' => 'application/msword', 1985 1984 'xl' => 'application/excel', 1986 1985 'eml' => 'message/rfc822'
-1
externals/phpmailer/class.phpmailer.php
··· 2118 2118 'mov' => 'video/quicktime', 2119 2119 'avi' => 'video/x-msvideo', 2120 2120 'movie' => 'video/x-sgi-movie', 2121 - 'doc' => 'application/msword', 2122 2121 'word' => 'application/msword', 2123 2122 'xl' => 'application/excel', 2124 2123 'eml' => 'message/rfc822'