From: Alexander Ebert Date: Thu, 23 Feb 2012 21:50:50 +0000 (+0100) Subject: Fixed installation X-Git-Tag: 2.0.0_Beta_1~1314 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b4282c8618a6e95381fa796455792633c054c31f;p=GitHub%2FWoltLab%2FWCF.git Fixed installation --- 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 @@