Skip to content

Commit 92c8116

Browse files
committed
Fix an error when saving voucher types
1 parent 4069d3b commit 92c8116

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/controllers/VoucherTypesController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function actionSave(): ?Response
6565
$voucherType->name = $this->request->getBodyParam('name');
6666
$voucherType->handle = $this->request->getBodyParam('handle');
6767
$voucherType->skuFormat = $this->request->getBodyParam('skuFormat');
68-
$voucherType->descriptionFormat = $request->getBodyParam('descriptionFormat');
68+
$voucherType->descriptionFormat = $this->request->getBodyParam('descriptionFormat');
6969

7070
// Site-specific settings
7171
$allSiteSettings = [];

0 commit comments

Comments
 (0)