Fix syntax error in core/email.class.inc.php

Missing ";" at the end of line :/
Introduced by 503afb98
This commit is contained in:
Pierre Goiffon
2020-03-27 16:43:03 +01:00
parent 503afb9831
commit ff2e1a3507

View File

@@ -305,11 +305,11 @@ class EMail
switch(strtolower($sKey))
{
case 'return-path':
$this->m_oMessage->setReturnPath($sValue)
$this->m_oMessage->setReturnPath($sValue);
break;
default:
$oHeaders->addTextHeader($sKey, $sValue);
$oHeaders->addTextHeader($sKey, $sValue);
}
}
}