Skip to content

Commit

Permalink
Merge pull request #3 from justuno-com/master
Browse files Browse the repository at this point in the history
  • Loading branch information
socks415 authored Mar 26, 2021
2 parents 50fcb5f + 8a18983 commit 6ec7ddd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions app/code/community/Justuno/M1/Filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,13 @@ static function p(C $r) {
*/
private static function byDate(C $c) {
if ($since = L::req('updatedSince')) { /** @var string $since */
# 2021-03-24 "`updatedSince` should be interpreted in the UTC timezone": https://github.com/justuno-com/m1/issues/55
$tz = new TZ(TZ::UTC); /** @var TZ $tz */
/**
* 2021-03-24 "`updatedSince` should be interpreted in the UTC timezone": https://github.com/justuno-com/m1/issues/55
* 2021-03-27
* Using @see TZ::UTC leads to the error: «DateTimeZone::__construct(): Unknown or bad timezone (1024)»
* https://github.com/justuno-com/m1/issues/57
*/
$tz = new TZ('UTC'); /** @var TZ $tz */
/**
* 2019-10-31
* @param string $s
Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Justuno/M1/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Justuno_M1>
<author>Dmitry Fedyuk</author>
<url>https://www.upwork.com/fl/mage2pro</url>
<version>1.6.8</version>
<version>1.6.9</version>
</Justuno_M1>
</modules>
<frontend>
Expand Down

0 comments on commit 6ec7ddd

Please sign in to comment.