Commit 6e2677b0 authored by Sebastian Kummer's avatar Sebastian Kummer

ZP-776 Remove obsolete link and function check.

Released under the Affero GNU General Public License (AGPL) version 3.
parent ede5afb4
...@@ -240,8 +240,7 @@ class ZPush { ...@@ -240,8 +240,7 @@ class ZPush {
Utils::FixFileOwner(LOGERRORFILE); Utils::FixFileOwner(LOGERRORFILE);
// set time zone // set time zone
// code contributed by Robert Scheck (rsc) - more information: https://developer.berlios.de/mantis/view.php?id=479 // code contributed by Robert Scheck (rsc)
if(function_exists("date_default_timezone_set")) {
if(defined('TIMEZONE') ? constant('TIMEZONE') : false) { if(defined('TIMEZONE') ? constant('TIMEZONE') : false) {
if (! @date_default_timezone_set(TIMEZONE)) if (! @date_default_timezone_set(TIMEZONE))
throw new FatalMisconfigurationException(sprintf("The configured TIMEZONE '%s' is not valid. Please check supported timezones at http://www.php.net/manual/en/timezones.php", constant('TIMEZONE'))); throw new FatalMisconfigurationException(sprintf("The configured TIMEZONE '%s' is not valid. Please check supported timezones at http://www.php.net/manual/en/timezones.php", constant('TIMEZONE')));
...@@ -249,7 +248,6 @@ class ZPush { ...@@ -249,7 +248,6 @@ class ZPush {
else if(!ini_get('date.timezone')) { else if(!ini_get('date.timezone')) {
date_default_timezone_set('Europe/Amsterdam'); date_default_timezone_set('Europe/Amsterdam');
} }
}
return true; return true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment