@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 unused variable

Summary: `$tmp` is declared but never used.

Test Plan: Read/grep 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/D25665

-2
-1
externals/phpmailer/class.phpmailer-lite.php
··· 2048 2048 * @param string $key_pass Password for private key 2049 2049 */ 2050 2050 public function DKIM_QP($txt) { 2051 - $tmp=""; 2052 2051 $line=""; 2053 2052 for ($i=0;$i<strlen($txt);$i++) { 2054 2053 $ord=ord($txt[$i]);
-1
externals/phpmailer/class.phpmailer.php
··· 2186 2186 * @param string $key_pass Password for private key 2187 2187 */ 2188 2188 public function DKIM_QP($txt) { 2189 - $tmp=""; 2190 2189 $line=""; 2191 2190 for ($i=0;$i<strlen($txt);$i++) { 2192 2191 $ord=ord($txt[$i]);