Skip to content

Commit

Permalink
Release 6.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrowanwallee committed Jul 29, 2024
1 parent d8374f7 commit 5d81599
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ tail -f var/log/postfinancecheckout_payment*.log

## Documentation

[Documentation](https://plugin-documentation.postfinance-checkout.ch/pfpayments/shopware-6/6.1.6/docs/en/documentation.html)
[Documentation](https://plugin-documentation.postfinance-checkout.ch/pfpayments/shopware-6/6.1.7/docs/en/documentation.html)

## License

Expand Down
2 changes: 1 addition & 1 deletion bin/release.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
break;
}

$composerJsonData['version'] = '6.1.6';
$composerJsonData['version'] = '6.1.7';

$logger->info('Adding shopware/core and shopware/storefront to the composer.json.');
file_put_contents(
Expand Down
2 changes: 1 addition & 1 deletion docs/en/documentation.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h2>Documentation</h2> </div>
</a>
</li>
<li>
<a href="https://github.com/pfpayments/shopware-6/releases/tag/6.1.6/">
<a href="https://github.com/pfpayments/shopware-6/releases/tag/6.1.7/">
Source
</a>
</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@

{% block page_checkout_confirm_address_billing_data %}
<div class="confirm-address-billing">
{% if billingAddress.id is same as(shippingAddress.id) %}
{% set shippingAddress = context.customer.activeShippingAddress %}
{% set billingAddress = context.customer.activeBillingAddress %}
{% if shippingAddress.id is defined and shippingAddress.id is same as(billingAddress.id) %}
{% block page_checkout_confirm_address_billing_data_equal %}
<p>
{{ "checkout.addressEqualText"|trans|sw_sanitize }}
Expand Down

0 comments on commit 5d81599

Please sign in to comment.