From b4282c8618a6e95381fa796455792633c054c31f Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Thu, 23 Feb 2012 22:50:50 +0100 Subject: [PATCH] Fixed installation --- .../install/files/lib/system/package/PackageArchive.class.php | 3 +-- .../lib/system/package/PackageInstallationDispatcher.class.php | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/wcfsetup/install/files/lib/system/package/PackageArchive.class.php b/wcfsetup/install/files/lib/system/package/PackageArchive.class.php index e147b4fd0a..7be3c9a433 100644 --- a/wcfsetup/install/files/lib/system/package/PackageArchive.class.php +++ b/wcfsetup/install/files/lib/system/package/PackageArchive.class.php @@ -231,8 +231,7 @@ class PackageArchive { throw new SystemException("package date '".$element->nodeValue."' is invalid, violating ISO-8601 date format."); } - // TODO: Is this even neccessary? - //$this->packageInfo['date'] = strtotime($element->nodeValue) + 43201; + $this->packageInfo['date'] = strtotime($element->nodeValue); break; } } diff --git a/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php b/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php index dd24daf769..9183ee8348 100644 --- a/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php +++ b/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php @@ -1,7 +1,5 @@