From eef3c4aa79e4bbeee501000cabbe76f60bfa0487 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Tue, 31 Jan 2012 17:40:42 +0100 Subject: [PATCH] Fixed run-attribute for instructions Fixes #398 --- .../lib/system/package/PackageInstallationNodeBuilder.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/package/PackageInstallationNodeBuilder.class.php b/wcfsetup/install/files/lib/system/package/PackageInstallationNodeBuilder.class.php index 3340c5c0b6..64b2b66cfc 100644 --- a/wcfsetup/install/files/lib/system/package/PackageInstallationNodeBuilder.class.php +++ b/wcfsetup/install/files/lib/system/package/PackageInstallationNodeBuilder.class.php @@ -480,7 +480,7 @@ class PackageInstallationNodeBuilder { $instructions = ($this->installation->getAction() == 'install') ? $this->installation->getArchive()->getInstallInstructions() : $this->installation->getArchive()->getUpdateInstructions(); foreach ($instructions as $pip) { - if (isset($pip['attributes']['run']) && ($pip['attributes']['run'] == 'isApplication')) { + if (isset($pip['attributes']['run']) && ($pip['attributes']['run'] == 'standalone')) { $this->parentNode = $this->node; $this->node = $this->getToken(); $this->sequenceNo = 0; -- 2.20.1