File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -38,12 +38,12 @@ public function __construct($notification) {
38
38
39
39
if (isset ($ notification ["activationTime " ])) {
40
40
// "activationTime":"2019-02-20T23:30:00Z"
41
- $ tmpActTime = date_create_from_format ('Y-m-d\TH:i:s\Z ' , $ notification ["activationTime " ]);
41
+ $ tmpActTime = date_create_from_format ('Y-m-d\TH:i:s ' , $ notification ["activationTime " ]);
42
42
$ tmpTomorrow = date_create_from_format ('Y-m-d H:i:s ' , date_format (date_create ('tomorrow ' ), 'Y-m-d ' ).' 00:00:00 ' );
43
43
$ tmpDayAfter = date_add ($ tmpTomorrow , date_interval_create_from_date_string ('+1 day ' ));
44
44
45
45
if ($ tmpActTime < $ tmpTomorrow ) {
46
- $ this ->thTime = "Today at " .date_format ($ tmpActTime , 'H:i ' );
46
+ $ this ->thTime = "Today at " .date_format ($ tmpActTime , 'H:i ' );
47
47
}
48
48
elseif ($ tmpActTime < $ tmpDayAfter ) {
49
49
$ this ->thTime = "Tomorrow at " .date_format ($ tmpActTime , 'H:i ' );
You can’t perform that action at this time.
0 commit comments