Skip to content

Commit 5e827a3

Browse files
Merge pull request #3740 in SW/shopware from sw-15304/5.2/fix-update-wizard to 5.2
* commit '45054c855fce058200d8362b6b697d30214b6737': SW-15304 - Fix update wizard config access
2 parents f4ad449 + 45054c8 commit 5e827a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

engine/Shopware/Controllers/Backend/UpdateWizard.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ public function indexAction()
3636
{
3737
/** @var Connection $connection */
3838
$connection = $this->get('dbal_connection');
39-
$sql = "INSERT IGNORE INTO `s_core_config_elements` (`id`, `form_id`, `name`, `value`, `label`, `description`, `type`, `required`, `position`, `scope`, `filters`, `validators`)
40-
VALUES (NULL, '0', 'updateWizardStarted', 'b:1;', '', '', 'checkbox', '0', '0', '1', NULL, NULL);";
39+
$sql = "INSERT IGNORE INTO `s_core_config_elements` (`id`, `form_id`, `name`, `value`, `label`, `description`, `type`, `required`, `position`, `scope`)
40+
VALUES (NULL, '0', 'updateWizardStarted', 'b:1;', '', '', 'checkbox', '0', '0', '1');";
4141
$connection->executeUpdate($sql);
4242

4343
Shopware()->Container()->get('shopware.cache_manager')->clearConfigCache();

0 commit comments

Comments
 (0)