From 228537cff1894af78a7dfdb9e1a65e66f795080f Mon Sep 17 00:00:00 2001 From: Michiel Gerritsen Date: Mon, 3 Jun 2019 20:18:23 +0200 Subject: [PATCH] Set the default scope id as this is not set in all Magento versions --- Setup/UpgradeData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Setup/UpgradeData.php b/Setup/UpgradeData.php index 14281669660..613c1342c74 100644 --- a/Setup/UpgradeData.php +++ b/Setup/UpgradeData.php @@ -159,7 +159,7 @@ private function setCorrectWebsiteDefault($path) return; } - $this->resourceConfig->saveConfig($path, '0', 'default'); + $this->resourceConfig->saveConfig($path, '0', 'default', 0); } private function removeBitcoinConfiguration()