Error "Access to undeclared static property: Advanced_MailerController::$config" 수정

This commit is contained in:
conory 2016-06-14 22:31:00 +09:00
parent fc2d9a2501
commit 0d9e6f333f

View file

@ -55,7 +55,7 @@ class Advanced_MailerController extends Advanced_Mailer
{
$config = $this->getConfig();
if (toBool($config->log_sent_mail) || (toBool(self::$config->log_errors) && count($mail->errors)))
if (toBool($config->log_sent_mail) || (toBool($config->log_errors) && count($mail->errors)))
{
$obj = new \stdClass();
$obj->mail_srl = getNextSequence();