tbrehm
2012-03-13 44cee2bf88a777fe53791a6bddd6d647cab37a0e
Implemented: FS#2125 - Installer: find out correct timezone
1 files modified
5 ■■■■ changed files
install/install.php 5 ●●●● patch | view | raw | blame | history
install/install.php
@@ -104,7 +104,10 @@
//** Select the language and set default timezone
$conf['language'] = $inst->simple_query('Select language', array('en','de'), 'en');
$conf['timezone'] = 'UTC';
exec('date +%Z', $tmp_out);
$conf['timezone'] = $tmp_out[0];
unset($tmp_out);
//** Select installation mode
$install_mode = $inst->simple_query('Installation mode', array('standard','expert'), 'standard');