Skip to content

Commit

Permalink
Fix bad concat
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Dec 14, 2016
1 parent af407a0 commit e4dd020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/core/class/smtps.class.php
Expand Up @@ -1126,7 +1126,7 @@ function getHeader()
$host=preg_replace('@tcp://@i','',$host); // Remove prefix
$host=preg_replace('@ssl://@i','',$host); // Remove prefix

$host.=dol_getprefix().'-'.$host;
$host=dol_getprefix().'-'.$host;

//NOTE: Message-ID should probably contain the username of the user who sent the msg
$_header .= 'Subject: ' . $this->getSubject() . "\r\n";
Expand Down

0 comments on commit e4dd020

Please sign in to comment.