From: Matthias Schmidt Date: Sun, 7 Aug 2011 17:47:08 +0000 (+0200) Subject: Fixed missing updateDate update during package updates X-Git-Tag: 2.0.0_Beta_1~1902^2~1^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=6eb5da1346ccaa53ab2f8c481a7f59232cddcf42;p=GitHub%2FWoltLab%2FWCF.git Fixed missing updateDate update during package updates --- diff --git a/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php b/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php index 504c4d1d65..ed380c16ba 100644 --- a/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php +++ b/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php @@ -557,6 +557,7 @@ class PackageInstallationDispatcher { if ($this->action == 'update') { $packageEditor = new PackageEditor($this->getPackage()); $packageEditor->update(array( + 'updateDate' => TIME_NOW, 'packageVersion' => $this->archive->getPackageInfo('version') )); }