Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2016-11-09 00:24:00 +0300
committerMorris Jobke <hey@morrisjobke.de>2016-11-25 18:04:01 +0300
commitc3f26a3b37299c759846d1c470eda0e4a40912ce (patch)
treed03da1220709e4ee2a144d329b3abeaf8d180fad /updater.php
parent84679030e086193cccf91f4f1c932a9970551214 (diff)
set timezone to avoid warnings
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'updater.php')
-rwxr-xr-xupdater.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/updater.php b/updater.php
index dbcb1b1..b32c07c 100755
--- a/updater.php
+++ b/updater.php
@@ -5,6 +5,7 @@ require __DIR__ . '/vendor/autoload.php';
ini_set('display_errors', '0');
ini_set('log_errors', '1');
+date_default_timezone_set('UTC');
$application = new NC\Updater\CommandApplication();
$application->run(); \ No newline at end of file