Browse Source

the used timezone should be editable

if the timezone is set in the php cli ini file, mage should use that one instead of the default UTC
1.0
Mike Tralala 10 years ago
parent
commit
736fe7c4d8
  1. 4
      bin/mage

4
bin/mage

@ -9,7 +9,9 @@
* 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__));

Loading…
Cancel
Save