Suppress PHP warning when using date_default_timezone_get()

Thanks to @nem25 for reporting this
This commit is contained in:
Daniel Rudolf 2016-02-04 14:19:14 +01:00
parent b3f1347379
commit d8be108c5b
2 changed files with 2 additions and 1 deletions

View file

@ -8,6 +8,7 @@ Released: -
* [Changed] Improve documentation
* [Changed] Replace `version_compare()` with `PHP_VERSION_ID` in
`index.php.dist` (available since PHP 5.2.7)
* [Fixed] Suppress PHP warning when using `date_default_timezone_get()`
```
### Version 1.0.0

View file

@ -498,7 +498,7 @@ class Pico
// explicitly set a default timezone to prevent a E_NOTICE
// when no timezone is set; the `date_default_timezone_get()`
// function always returns a timezone, at least UTC
$this->config['timezone'] = date_default_timezone_get();
$this->config['timezone'] = @date_default_timezone_get();
}
date_default_timezone_set($this->config['timezone']);
}