Skip to content

Commit

Permalink
use UTC if date.timezone is not set (#9181)
Browse files Browse the repository at this point in the history
  • Loading branch information
jarischaefer authored and murrant committed Sep 12, 2018
1 parent 46d5333 commit 3ba1c44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/app.php
Expand Up @@ -64,7 +64,7 @@
|
*/

'timezone' => ini_get('date.timezone'), // use existing timezone
'timezone' => ini_get('date.timezone') ?: 'UTC', // use existing timezone

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 3ba1c44

Please sign in to comment.