0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-20 10:02:14 +02:00

Fix wrong var name

This commit is contained in:
Marcus Bointon 2019-10-20 21:24:14 +02:00
parent 9638812426
commit 564f139ca6

View File

@ -4023,7 +4023,7 @@ class PHPMailer
$directory = '';
}
// RFC2392 S 2
$cid = substr(hash('sha256', $data), 0, 32) . '@phpmailer.0';
$cid = substr(hash('sha256', $url), 0, 32) . '@phpmailer.0';
if (strlen($basedir) > 1 && '/' !== substr($basedir, -1)) {
$basedir .= '/';
}