From 1e996eac6ac292c72ff7f0e8bef8239d2f22bebd Mon Sep 17 00:00:00 2001 From: Matthias Schmidt Date: Thu, 8 Mar 2012 16:18:09 +0100 Subject: [PATCH] Adds missing action check --- .../system/package/PackageInstallationDispatcher.class.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php b/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php index 464fef37a1..deba10762a 100644 --- a/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php +++ b/wcfsetup/install/files/lib/system/package/PackageInstallationDispatcher.class.php @@ -134,7 +134,9 @@ class PackageInstallationDispatcher { if ($node == '') { OptionEditor::resetCache(); - $this->saveLocalizedPackageInfos(); + if ($this->action == 'install') { + $this->saveLocalizedPackageInfos(); + } } return $step; -- 2.20.1