mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-27 16:27:19 +08:00
Bugfix: Undefined property: MailSo\Log\Drivers\File::$DateTimeZone
Found in issues #49
This commit is contained in:
parent
e234a5864c
commit
76cf24f426
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ abstract class Driver
|
|||
|
||||
protected function getTimeWithMicroSec() : string
|
||||
{
|
||||
return \substr((new \DateTime('now', $this->DateTimeZone))->format('Y-m-d H:i:s.u'), 0, -3);
|
||||
return \substr((new \DateTime('now', $this->oTimeZone))->format('Y-m-d H:i:s.u'), 0, -3);
|
||||
}
|
||||
|
||||
protected function getTypedPrefix(int $iType, string $sName = '') : string
|
||||
|
|
Loading…
Reference in a new issue