Browse Source

Merge pull request #211 from MikeTralala/patch-1

The timezone should be system dependent
1.0
Kuba Turek 10 years ago
parent
commit
b2e066a8c7
  1. 4
      bin/mage

4
bin/mage

@ -9,7 +9,9 @@
* file that was distributed with this source code. * file that was distributed with this source code.
*/ */
date_default_timezone_set('UTC'); if (empty(ini_get('date.timezone'))) {
date_default_timezone_set('UTC');
}
$baseDir = dirname(dirname(__FILE__)); $baseDir = dirname(dirname(__FILE__));

Loading…
Cancel
Save