Skip to content

Commit

Permalink
Merge branch 'gitlab-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mason authored and mason committed Oct 6, 2022
2 parents f05535f + bf5dcb3 commit e283622
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Model/Fasterpay.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ public function generateForm(Order $order)
'first_name' => !empty($billingData['firstname']) ? $billingData['firstname'] : '',
'last_name' => !empty($billingData['lastname']) ? $billingData['lastname'] : '',
'city' => !empty($billingData['city']) ? $billingData['city'] : '',
'zip' => !empty($billingData['postcode']) ? $billingData['postcode'] : ''
'zip' => !empty($billingData['postcode']) ? $billingData['postcode'] : '',
'cancel_url' => $this->urlBuilder->getUrl('checkout/cart'),
],
[
'autoSubmit' => true,
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Fasterpay_Fasterpay" setup_version="1.1.1">
<module name="Fasterpay_Fasterpay" setup_version="1.2.0">
<sequence>
<module name="Magento_Sales"/>
<module name="Magento_Payment"/>
Expand Down

0 comments on commit e283622

Please sign in to comment.