]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
default timezone
authorEvan Prodromou <evan@prodromou.name>
Wed, 16 Jul 2008 21:09:49 +0000 (17:09 -0400)
committerEvan Prodromou <evan@prodromou.name>
Wed, 16 Jul 2008 21:09:49 +0000 (17:09 -0400)
darcs-hash:20080716210949-84dde-b12d95acdf6f15887fe83fea8f968c972b862be5.gz

lib/common.php

index dca1ae94f641d1a7d059398b68f5c3e54cce85af..0203c2dea5f154f7872ce98bf634443f8e08b1ea 100644 (file)
@@ -45,6 +45,7 @@ $config =
                      'email' => 
                      array_key_exists('SERVER_ADMIN', $_SERVER) ? $_SERVER['SERVER_ADMIN'] : NULL,
                          'broughtby' => NULL,
+                         'timezone' => 'UTC',
                          'broughtbyurl' => NULL),
                'syslog' =>
                array('appname' => 'laconica', # for syslog
@@ -87,6 +88,11 @@ $config['db'] =
                'quote_identifiers' => false);
 
 require_once(INSTALLDIR.'/config.php');
+
+if (function_exists('date_default_timezone_set') && $config['site']['timezone']) {
+       date_default_timezone_set($config['site']['timezone']);
+}
+
 require_once(INSTALLDIR.'/lib/util.php');
 require_once(INSTALLDIR.'/lib/action.php');
 require_once(INSTALLDIR.'/lib/theme.php');