Skip to content

Commit d8b5392

Browse files
committed
Merge remote-tracking branch '38083/patch-3' into bt_comm_pr_247beta3
2 parents 348b976 + c8fd019 commit d8b5392

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/code/Magento/CatalogRule/Controller/Adminhtml/Promo/Catalog/NewConditionHtml.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ public function execute()
2929
str_replace('-', '/', $this->getRequest()->getParam('type', ''))
3030
);
3131
$objectType = $types[0];
32-
$reponseBody = '';
32+
$responseBody = '';
3333

3434
if (class_exists($objectType) && !in_array(ConditionInterface::class, class_implements($objectType))) {
35-
$this->getResponse()->setBody($reponseBody);
35+
$this->getResponse()->setBody($responseBody);
3636
return;
3737
}
3838

@@ -49,9 +49,9 @@ public function execute()
4949
if ($conditionModel instanceof AbstractCondition) {
5050
$conditionModel->setJsFormObject($this->getRequest()->getParam('form'));
5151
$conditionModel->setFormName($formNamespace);
52-
$reponseBody = $conditionModel->asHtmlRecursive();
52+
$responseBody = $conditionModel->asHtmlRecursive();
5353
}
5454

55-
$this->getResponse()->setBody($reponseBody);
55+
$this->getResponse()->setBody($responseBody);
5656
}
5757
}

0 commit comments

Comments
 (0)