Skip to content

Commit f98a229

Browse files
author
Vadim Zubovich
committed
Merge branch 'PR2' into 'spm-131-PRs-stabilization'
Pr2 See merge request !167
2 parents e682413 + e4186f0 commit f98a229

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

app/code/Magento/Catalog/Setup/UpgradeData.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public function upgrade(ModuleDataSetupInterface $setup, ModuleContextInterface
118118
if (version_compare($context->getVersion(), '2.0.3') < 0) {
119119
/** @var \Magento\Catalog\Setup\CategorySetup $categorySetup */
120120
$categorySetup = $this->categorySetupFactory->create(['setup' => $setup]);
121-
$categorySetup->updateAttribute(3, 51, 'default_value', 1);
121+
$categorySetup->updateAttribute(3, 54, 'default_value', 1);
122122
}
123123

124124
if (version_compare($context->getVersion(), '2.0.4') < 0) {

app/code/Magento/Integration/Controller/Adminhtml/Integration/Save.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,12 @@ protected function getIntegration($integrationId)
133133
} catch (IntegrationException $e) {
134134
$this->messageManager->addError($this->escaper->escapeHtml($e->getMessage()));
135135
$this->_redirect('*/*/');
136-
return;
136+
return null;
137137
} catch (\Exception $e) {
138138
$this->_logger->critical($e);
139139
$this->messageManager->addError(__('Internal error. Check exception log for details.'));
140140
$this->_redirect('*/*');
141-
return;
141+
return null;
142142
}
143143

144144
return $integrationData;

app/code/Magento/Security/etc/module.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
<sequence>
1111
<module name="Magento_Backend"/>
1212
<module name="Magento_Store"/>
13-
<module name="Magento_User"/>
1413
</sequence>
1514
</module>
1615
</config>

0 commit comments

Comments
 (0)