Changeset 3303424
- Timestamp:
- 05/30/2025 08:19:23 AM (10 months ago)
- Location:
- mollie-forms/trunk
- Files:
-
- 4 edited
-
classes/MollieForms.php (modified) (1 diff)
-
classes/Webhook.php (modified) (2 diffs)
-
mollie-forms.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mollie-forms/trunk/classes/MollieForms.php
r3284717 r3303424 10 10 * Plugin version number 11 11 */ 12 const PLUGIN_VERSION = '2. 7.13';12 const PLUGIN_VERSION = '2.8.0'; 13 13 14 14 /** -
mollie-forms/trunk/classes/Webhook.php
r3057728 r3303424 168 168 } 169 169 170 // send emails 171 $this->sendEmail($post, $status, $registration->id, $payment, 'customer'); 172 $this->sendEmail($post, $status, $registration->id, $payment, 'merchant'); 173 170 174 return 'OK'; 171 175 } … … 307 311 return; 308 312 } 313 314 if ($payment->sequenceType === 'recurring' && $status === 'paid') { 315 return; 316 } 309 317 310 318 $status = str_replace('_', '', $status); -
mollie-forms/trunk/mollie-forms.php
r3284717 r3303424 4 4 Plugin Name: Mollie Forms 5 5 Description: Create registration forms with payment methods of Mollie. One-time and recurring payments are possible. 6 Version: 2. 7.136 Version: 2.8.0 7 7 Author: Wobbie.nl 8 8 Author URI: https://wobbie.nl -
mollie-forms/trunk/readme.txt
r3284717 r3303424 5 5 Requires at least: 5.3 6 6 Requires PHP: 7.0 7 Tested up to: 6. 78 Stable tag: 2. 7.137 Tested up to: 6.8.1 8 Stable tag: 2.8.0 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 82 82 == Changelog == 83 83 84 = 2.8.0 - 30/05/2025 = 85 * Send e-mails about failed recurring payments 86 84 87 = 2.7.13 - 30/04/2025 = 85 88 * Send customer name and email to Mollie when creating payments
Note: See TracChangeset
for help on using the changeset viewer.