fixed PHP Fatal error: Using $this when not in object context

This commit is contained in:
Ralf Becker 2013-11-29 05:24:39 +00:00
parent 57c2c913d1
commit 2a32284616

View File

@ -334,8 +334,8 @@ class mail_bo
$mail = mail_bo::getInstance(false, $_profile_id,false);
//_debug_array( $_profile_id);
//$mail->mailPreferences = $mail->bopreferences->getPreferences($_profile_id,1);
$this->icServer = emailadmin_account::read($_profile_id)->imapServer();
$this->ogServer = emailadmin_account::read($_profile_id)->smtpServer();
$mail->icServer = emailadmin_account::read($_profile_id)->imapServer();
$mail->ogServer = emailadmin_account::read($_profile_id)->smtpServer();
return $mail;
}