- setting required php version to 5.2

- removing tz_offset default pref and config
- adding tz default pref (defaults to server timezone)
This commit is contained in:
Ralf Becker 2009-10-12 07:39:47 +00:00
parent 7813b84458
commit a83a79e167
3 changed files with 3 additions and 7 deletions

View File

@ -147,7 +147,7 @@ else
'template_set' => 'idots', 'template_set' => 'idots',
'theme' => 'idots', 'theme' => 'idots',
'navbar_format' => 'icons', 'navbar_format' => 'icons',
'tz_offset' => 0, 'tz' => date_default_timezone_get(),
'dateformat' => $lang == 'en' ? 'Y/m/d' : 'd.m.Y', 'dateformat' => $lang == 'en' ? 'Y/m/d' : 'd.m.Y',
'timeformat' => '24', 'timeformat' => '24',
'lang' => $lang, 'lang' => $lang,

View File

@ -67,7 +67,7 @@ class setup
* *
* @var float * @var float
*/ */
var $required_php_version = 5.1; var $required_php_version = 5.2;
/** /**
* PHP Version recommended for eGroupware * PHP Version recommended for eGroupware
* *

View File

@ -223,7 +223,7 @@ class setup_process
$current_config['webserver_url'] = '/egroupware'; $current_config['webserver_url'] = '/egroupware';
$egroupwareDirName = 'egroupware'; $egroupwareDirName = 'egroupware';
} }
if(!$is_windows) if(!$is_windows)
{ {
if(@is_dir('/tmp')) if(@is_dir('/tmp'))
{ {
@ -249,10 +249,6 @@ class setup_process
$current_config['files_dir'] = 'c:\\Program files\\'.$egroupwareDirName.'\\'.$GLOBALS['egw_setup']->ConfigDomain.'\\files'; $current_config['files_dir'] = 'c:\\Program files\\'.$egroupwareDirName.'\\'.$GLOBALS['egw_setup']->ConfigDomain.'\\files';
$current_config['backup_dir'] = 'c:\\Program files\\'.$egroupwareDirName.'\\'.$GLOBALS['egw_setup']->ConfigDomain.'\\backup'; $current_config['backup_dir'] = 'c:\\Program files\\'.$egroupwareDirName.'\\'.$GLOBALS['egw_setup']->ConfigDomain.'\\backup';
} }
$datetime =& CreateObject('phpgwapi.egw_datetime');
$current_config['tz_offset'] = $datetime->getbestguess();
unset($datetime);
// RalfBecker: php.net recommend this for security reasons, it should be our default too // RalfBecker: php.net recommend this for security reasons, it should be our default too
$current_config['usecookies'] = 'True'; $current_config['usecookies'] = 'True';