Skip to content

Commit

Permalink
Merge branch 'develop-v5' into v5
Browse files Browse the repository at this point in the history
  • Loading branch information
janhenckens committed Jan 18, 2025
2 parents d1506d9 + f58c2ee commit d8ef60b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## 5.2.4 - 2025-01-18
### Fixed
- Fixed status check for payment elements

## 5.2.3 - 2025-01-15
### Fixed
- Fixed an error when viewing payment details
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"minimum-stability": "alpha",
"description": "Easily accept payments with Mollie Payments",
"type": "craft-plugin",
"version": "5.2.3",
"version": "5.2.4",
"keywords": [
"craft",
"cms",
Expand Down
4 changes: 2 additions & 2 deletions src/templates/_includes/_transactions.twig
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
</td>
<td {{ 'Date'|t('mollie-payments') }}>{{ transaction.dateUpdated|date('j/m/Y H:i') }}</td>
<td>

{% if subscription is defined %}
{% if subscription is defined and subscription %}
<a href="{{ actionUrl('mollie-payments/subscription/check-transaction-status', {'id': transaction.id, redirect: element.getCpEditUrl()}) }}">{{ "Check status"|t('mollie-payments') }}</a>
{% else %}
<a href="{{ actionUrl('mollie-payments/payment/check-transaction-status', {'id': transaction.id, redirect: element.getCpEditUrl()}) }}">{{ "Check status"|t('mollie-payments') }}</a>
Expand Down

0 comments on commit d8ef60b

Please sign in to comment.