<instruction type="script">acp/post_install.php</instruction>
</instructions>
- <instructions type="update" fromversion="5.5.7">
- <instruction type="acpTemplate">acptemplates_update.tar</instruction>
- <instruction type="file">files_update.tar</instruction>
- <instruction type="template">templates_update.tar</instruction>
- </instructions>
- <instructions type="update" fromversion="5.5.8 dev 1">
- <instruction type="acpTemplate">acptemplates_update.tar</instruction>
- <instruction type="file">files_update.tar</instruction>
- <instruction type="template">templates_update.tar</instruction>
+ <instructions type="update" fromversion="5.5.8">
+ <!-- Run wcfsetup/install/files/acp/update_com.woltlab.wcf_5.5.9_systemId.php -->
</instructions>
</package>
--- /dev/null
+<?php
+
+/**
+ * Reset the System ID to encourage a recheck for the OPCache check.
+ *
+ * @author Tim Duesterhus
+ * @copyright 2001-2022 WoltLab GmbH
+ * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
+ * @package WoltLabSuite\Core
+ */
+
+use wcf\system\Environment;
+use wcf\system\registry\RegistryHandler;
+
+RegistryHandler::getInstance()->delete(
+ 'com.woltlab.wcf',
+ Environment::SYSTEM_ID_REGISTRY_KEY
+);