Revert "Fix date being used in mail packets, timezone was effectively being to a timestamp with the timezone already"
This function is used to get the true date of a message (taking into account the TZ), and needed when creating the TZUTC
This reverts commit ad0ad73b0c
.
This commit is contained in:
@@ -59,11 +59,9 @@ trait MessageAttributes
|
||||
return ($this->msg_src) ? $this->msg_src : $this->rebuildMessage();
|
||||
}
|
||||
|
||||
/** @deprecated use datetime? */
|
||||
public function getDateAttribute(): Carbon
|
||||
{
|
||||
Log::alert(sprintf('%s:! This function is deprecated',self::LOGKEY),['class'=>get_class($this)]);
|
||||
return $this->datetime;
|
||||
return $this->datetime->utcOffset($this->tzoffset);
|
||||
}
|
||||
|
||||
public function getOriginAttribute(string $val=NULL): ?string
|
||||
|
Reference in New Issue
Block a user