From 240a12631a4172fce57cb974cb58155463c2447a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Guillot?= Date: Sat, 14 Sep 2013 19:01:47 -0400 Subject: [PATCH] Remove timezone check --- check_setup.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/check_setup.php b/check_setup.php index 3ffde78..54e890c 100644 --- a/check_setup.php +++ b/check_setup.php @@ -45,8 +45,3 @@ if (! function_exists('curl_init') && ! ini_get('allow_url_fopen')) { if (! is_writable('data')) { die('The directory "data" must be writeable by your web server user'); } - -// If timezone is not set -if (! ini_get('date.timezone')) { - die('You must configure a timezone in you php.ini (date.timezone value)'); -}