Skip to content

Commit

Permalink
Merge pull request #17 from Invertus/main
Browse files Browse the repository at this point in the history
4.5.3 release changes
  • Loading branch information
margud authored Sep 7, 2022
2 parents be4eec3 + 0e8708e commit f48782a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 101 deletions.
85 changes: 0 additions & 85 deletions .github/workflows/midnight_status_check.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '7.1' ]
php-versions: [ '5.6' ]

steps:
- name: Checkout
Expand All @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
presta-versions: [ '1.7.6.8', '1.6.1.23', '1.7.7.0' ]
presta-versions: ['1.6.1.23']
steps:
- name: Checkout
uses: actions/[email protected]
Expand Down
1 change: 1 addition & 0 deletions controllers/front/return.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ public function initContent()
// any paid payments for this cart?
if (false === $data['mollie_info']) {
/* @phpstan-ignore-next-line */
$data['mollie_info'] = $paymentMethodRepo->getPaymentBy('order_id', (int) Order::getOrderByCartId($idCart));
}
if (false === $data['mollie_info']) {
Expand Down
3 changes: 0 additions & 3 deletions tests/phpstan/phpstan1.7.6.8.neon

This file was deleted.

3 changes: 0 additions & 3 deletions tests/phpstan/phpstan1.7.7.0.neon

This file was deleted.

16 changes: 8 additions & 8 deletions views/templates/admin/_configure/helpers/form/form.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,14 @@
{l s='The description to be used for this transaction. These variables are available:' mod='mollie'}
</p>
<p class="help-block">
<b>{'{orderNumber}'}</b>,
<b>{'{storeName}'}</b>,
<b>{'{countryCode}'}</b>,
<b>{'{cart.id}'}</b>,
<b>{'{order.reference}'}</b>,
<b>{'{customer.firstname}'}</b>,
<b>{'{customer.lastname}'}</b>,
<b>{'{customer.company}'}</b>
<b>{'{orderNumber}'|escape:'htmlall':'UTF-8'}</b>,
<b>{'{storeName}'|escape:'htmlall':'UTF-8'}</b>,
<b>{'{countryCode}'|escape:'htmlall':'UTF-8'}</b>,
<b>{'{cart.id}'|escape:'htmlall':'UTF-8'}</b>,
<b>{'{order.reference}'|escape:'htmlall':'UTF-8'}</b>,
<b>{'{customer.firstname}'|escape:'htmlall':'UTF-8'}</b>,
<b>{'{customer.lastname}'|escape:'htmlall':'UTF-8'}</b>,
<b>{'{customer.company}'|escape:'htmlall':'UTF-8'}</b>
</p>
</div>
</div>
Expand Down

0 comments on commit f48782a

Please sign in to comment.