From 2e0e68b57f456da6272b1af291620b34874ee01d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Fri, 14 Oct 2016 08:41:52 +0200 Subject: [PATCH] log error when setting timezone to UTC fails (#26354) Signed-off-by: Roeland Jago Douma --- lib/base.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/base.php b/lib/base.php index 0c4acab8fd..bcb81662c0 100644 --- a/lib/base.php +++ b/lib/base.php @@ -625,7 +625,9 @@ class OC { @ini_set('display_errors', 0); @ini_set('log_errors', 1); - date_default_timezone_set('UTC'); + if(!date_default_timezone_set('UTC')) { + \OC::$server->getLogger()->error('Could not set timezone to UTC'); + }; //try to configure php to enable big file uploads. //this doesn´t work always depending on the webserver and php configuration.