1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-19 16:01:34 +02:00

Merge pull request #342 from jpgnz/master

Custom time zone from .env
This commit is contained in:
Hillel Coren 2015-06-10 11:34:32 +03:00
commit 11fc506475
2 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@ APP_DEBUG=false
APP_URL=http://ninja.dev
APP_CIPHER=rijndael-128
APP_KEY
APP_TIMEZONE
DB_TYPE=mysql
DB_HOST=localhost

View File

@ -41,7 +41,7 @@ return [
|
*/
'timezone' => 'UTC',
'timezone' => env('APP_TIMEZONE', 'UTC'),
/*
|--------------------------------------------------------------------------