Browse Source

Merge pull request #223 from cebe/timezone-fix

better have timezone fix in application
tags/2.0.0-beta
Qiang Xue 12 years ago
parent
commit
d9923c5413
  1. 3
      apps/bootstrap/index.php
  2. 6
      yii/base/Application.php
  3. 4
      yii/yiic.php

3
apps/bootstrap/index.php

@ -1,7 +1,4 @@
<?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);

6
yii/base/Application.php

@ -85,6 +85,10 @@ class Application extends Module
throw new InvalidConfigException('The "basePath" configuration is required.');
}
if (!ini_get('date.timezone')) {
$this->setTimeZone('UTC');
}
$this->registerErrorHandlers();
$this->registerCoreComponents();
@ -222,6 +226,8 @@ class Application extends Module
/**
* Returns the time zone used by this application.
* This is a simple wrapper of PHP function date_default_timezone_get().
* If time zone is not configured in php.ini or application config,
* it will be set to UTC by default.
* @return string the time zone used by this application.
* @see http://php.net/manual/en/function.date-default-timezone-get.php
*/

4
yii/yiic.php

@ -7,10 +7,6 @@
* @license http://www.yiiframework.com/license/
*/
if(!ini_get('date.timezone')) {
date_default_timezone_set('UTC');
}
defined('YII_DEBUG') or define('YII_DEBUG', true);
// fcgi doesn't have STDIN defined by default

Loading…
Cancel
Save