mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 18:19:22 +03:00
Fixed \RainLoop\Model\Account::sParentEmail property (Closes #424)
This commit is contained in:
parent
2937f341ee
commit
72ac34ce19
1 changed files with 2 additions and 1 deletions
|
|
@ -65,6 +65,7 @@ class Account extends \RainLoop\Account // for backward compatibility
|
|||
$this->sSignMeToken = $sSignMeToken;
|
||||
$this->sProxyAuthUser = $sProxyAuthUser;
|
||||
$this->sProxyAuthPassword = $sProxyAuthPassword;
|
||||
$this->sParentEmail = '';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -226,7 +227,7 @@ class Account extends \RainLoop\Account // for backward compatibility
|
|||
*/
|
||||
public function SetParentEmail($sParentEmail)
|
||||
{
|
||||
$this->sParentEmail = \MailSo\Base\Utils::IdnToAscii($sParentEmail, true);
|
||||
$this->sParentEmail = \trim(\MailSo\Base\Utils::IdnToAscii($sParentEmail, true));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue