Browse Source

fix: remove pointless unset

tags/2.0.0-beta
Benjamin Wöster 12 years ago
parent
commit
49a4314a41
  1. 1
      yii/base/Application.php

1
yii/base/Application.php

@ -90,7 +90,6 @@ class Application extends Module
unset($config['timeZone']); unset($config['timeZone']);
} elseif (!ini_get('date.timezone')) { } elseif (!ini_get('date.timezone')) {
$this->setTimeZone('UTC'); $this->setTimeZone('UTC');
unset($config['timeZone']);
} }
$this->registerErrorHandlers(); $this->registerErrorHandlers();

Loading…
Cancel
Save