diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-09-17 22:04:16 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-09-17 22:04:16 +0200 |
commit | 8f098e8dead85b6512ac72b2d805314baec72a2f (patch) | |
tree | 96b89dbcc2a58dab0f2dd1183beef3036c13287f /installer | |
parent | 99d9f50a0000447d0a752e6c43716237dc0da176 (diff) | |
parent | 6898b420ed4eb2bd2d1933758cde27bdd305d72a (diff) |
Merge branch 'master' of github.com:roundcube/roundcubemail
Diffstat (limited to 'installer')
-rw-r--r-- | installer/check.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/installer/check.php b/installer/check.php index 52460bb0f..d6c9f5c40 100644 --- a/installer/check.php +++ b/installer/check.php @@ -35,12 +35,12 @@ $ini_checks = array( 'suhosin.session.encrypt' => 0, 'magic_quotes_runtime' => 0, 'magic_quotes_sybase' => 0, + 'date.timezone' => '-NOTEMPTY-', ); $optional_checks = array( // required for utils/modcss.inc, should we require this? 'allow_url_fopen' => 1, - 'date.timezone' => '-NOTEMPTY-', ); $source_urls = array( @@ -171,7 +171,15 @@ foreach ($ini_checks as $var => $val) { $status = ini_get($var); if ($val === '-NOTEMPTY-') { if (empty($status)) { - $RCI->fail($var, "cannot be empty and needs to be set"); + $RCI->fail($var, "empty value detected"); + } else if ($var == 'date.timezone') { + try { + $tz = new DateTimeZone($status); + $RCI->pass($var); + } + catch (Exception $e) { + $RCI->fail($var, "invalid value detected: $status"); + } } else { $RCI->pass($var); } |