Commit 810d232e by Alexander Makarov

fixes #209 added setting default timezone to UTC in case it's not set via php.ini

parent ecbae287
<?php
if(!ini_get('date.timezone')) {
date_default_timezone_set('UTC');
}
// comment out the following line to disable debug mode
defined('YII_DEBUG') or define('YII_DEBUG', true);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment