From bf23be313dc997126f6e179d5c96c9b332071a81 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 23 Aug 2010 13:14:37 +0000 Subject: [PATCH] Re-added default timezone, let's pray it can be set later on --- inc/config-global.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/inc/config-global.php b/inc/config-global.php index f3a26f6121..f76a027151 100644 --- a/inc/config-global.php +++ b/inc/config-global.php @@ -46,6 +46,12 @@ if (!defined('__SECURITY')) { * PLEASE DO NOT EDIT THE COMMENTS! install.php NEEDS THEM! * ************************************************************************/ +// Proper function exists? +if (function_exists('date_default_timezone_set')) { + // Set default timezone to Europe/Berlin (because I'm from Germany) + @date_default_timezone_set('Europe/Berlin'); +} // END - if + // CFG: ERROR_REPORTING error_reporting(E_ALL | E_STRICT); -- 2.39.2