Skip to content

Commit

Permalink
Fixed issue with campaign time (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
tuj authored Oct 25, 2019
1 parent 5cfd39a commit 1a2cad9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## 6.1.3

* Fixed UTC in AppKernel.php.
* Updated os2display/screen-bundle: 1.1.3

## 6.1.2

* Added fallback_image config.
Expand Down
7 changes: 7 additions & 0 deletions app/AppKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,11 @@ public function registerContainerConfiguration(LoaderInterface $loader)
});
$loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');
}

public function __construct($environment, $debug)
{
// Force the timezone to be UTC.
date_default_timezone_set('UTC');
parent::__construct($environment, $debug);
}
}
10 changes: 5 additions & 5 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1a2cad9

Please sign in to comment.