diff --git a/libraries/src/Installer/Adapter/PackageAdapter.php b/libraries/src/Installer/Adapter/PackageAdapter.php index 16d9162e5750f..603dc398d826c 100644 --- a/libraries/src/Installer/Adapter/PackageAdapter.php +++ b/libraries/src/Installer/Adapter/PackageAdapter.php @@ -541,7 +541,6 @@ protected function storeExtension() $this->extension->name = $this->name; $this->extension->type = 'package'; $this->extension->element = $this->element; - $this->extension->changelogurl = $this->changelogurl; // There is no folder for packages $this->extension->folder = ''; @@ -552,6 +551,9 @@ protected function storeExtension() $this->extension->params = $this->parent->getParams(); } + // Update changelogurl + $this->extension->changelogurl = $this->changelogurl; + // Update the manifest cache for the entry $this->extension->manifest_cache = $this->parent->generateManifestCache();