@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.

Remove unused parameter from PhabricatorMailEmailEngine::newEmailThreadingHeaders() call

Summary:
`Method PhabricatorMailEmailEngine::newEmailThreadingHeaders() invoked with 1 parameter, 0 required.`
Thus remove the parameter from its call in the same class.
The called private function does `$mailer = $this->getMailer()` anyway.

Test Plan: Read the code.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

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

+1 -1
+1 -1
src/applications/metamta/engine/PhabricatorMailEmailEngine.php
··· 72 72 $message->setSubject($subject); 73 73 74 74 $headers = $this->newEmailHeaders(); 75 - foreach ($this->newEmailThreadingHeaders($mailer) as $threading_header) { 75 + foreach ($this->newEmailThreadingHeaders() as $threading_header) { 76 76 $headers[] = $threading_header; 77 77 } 78 78