]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
Set the default timezone in index.php
authorArthurHoaro <arthur@hoa.ro>
Sun, 29 May 2016 12:26:23 +0000 (14:26 +0200)
committerArthurHoaro <arthur@hoa.ro>
Sat, 11 Jun 2016 07:30:56 +0000 (09:30 +0200)
application/config/ConfigPhp.php
index.php

index 19fecf2b14ee91fe927f2fbd32ee91df0e383640..f99073af583054a54c7f387e0a73247de98b9e63 100644 (file)
@@ -66,9 +66,6 @@ class ConfigPhp implements ConfigIO
             }
         }
 
-        // FIXME!
-        //$configStr .= 'date_default_timezone_set('.var_export($conf['timezone'], true).');'. PHP_EOL;
-
         if (!file_put_contents($filepath, $configStr)
             || strcmp(file_get_contents($filepath), $configStr) != 0
         ) {
index 780dc581bef119a3bb7535757c8ee42a444001ce..aad65559b10218773d69141af4b8867fe79645a1 100644 (file)
--- a/index.php
+++ b/index.php
@@ -113,6 +113,8 @@ RainTPL::$cache_dir = $conf->get('config.RAINTPL_TMP'); // cache directory
 $pluginManager = PluginManager::getInstance();
 $pluginManager->load($conf->get('config.ENABLED_PLUGINS'));
 
+date_default_timezone_set($conf->get('timezone', 'UTC'));
+
 ob_start();  // Output buffering for the page cache.
 
 // In case stupid admin has left magic_quotes enabled in php.ini: