Changeset 3271428
- Timestamp:
- 04/12/2025 10:20:45 AM (12 months ago)
- Location:
- solea
- Files:
-
- 6 edited
- 1 copied
-
tags/5.8 (copied) (copied from solea/trunk)
-
tags/5.8/app/mails/payment-successfull-mail.php (modified) (2 diffs)
-
tags/5.8/readme.txt (modified) (2 diffs)
-
tags/5.8/solea.php (modified) (1 diff)
-
trunk/app/mails/payment-successfull-mail.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/solea.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
solea/tags/5.8/app/mails/payment-successfull-mail.php
r3163434 r3271428 41 41 ) . '<br /><br />'; 42 42 43 $amount_left = $participant->amount - $participant->amount_paid; 43 44 // Check if the payment is complete. 44 if ( $participant->amount === $participant->amount_paid) {45 if ( 0 === (int)$amount_left ) { 45 46 $return .= __( 'All required payment is now complete, and you are fully registered for the event.', 'solea' ); 46 47 } else { … … 52 53 /* Translators: %s Amojunt that is missing */ 53 54 __( 'Please note that an amount of %s is still missing.', 'solea' ), 54 solea_format_amount( $ participant->amount - $participant->amount_paid)55 solea_format_amount( $amount_left ) 55 56 ) . '<br />' . 56 57 wp_sprintf( -
solea/tags/5.8/readme.txt
r3263905 r3271428 3 3 Tags: solea, events, management, budgeting 4 4 Requires at least: 6.0 5 Tested up to: 6. 76 Stable tag: 5. 75 Tested up to: 6.8 6 Stable tag: 5.8 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 39 39 40 40 ## Changelog ## 41 = 5.8 = 42 * [BUG] Fixed payment notification if amount is totally paid 43 41 44 = 5.7 = 42 45 * [IMP] Better handling of custom mails containing line breaks -
solea/tags/5.8/solea.php
r3263905 r3271428 3 3 * Plugin Name: solea 4 4 * Description: A tool for organisating events and keep participants in mind. 5 * Version: 5. 75 * Version: 5.8 6 6 * Tags: solea, events, management, budgeting 7 7 * Requires at least: 6.0 -
solea/trunk/app/mails/payment-successfull-mail.php
r3163434 r3271428 41 41 ) . '<br /><br />'; 42 42 43 $amount_left = $participant->amount - $participant->amount_paid; 43 44 // Check if the payment is complete. 44 if ( $participant->amount === $participant->amount_paid) {45 if ( 0 === (int)$amount_left ) { 45 46 $return .= __( 'All required payment is now complete, and you are fully registered for the event.', 'solea' ); 46 47 } else { … … 52 53 /* Translators: %s Amojunt that is missing */ 53 54 __( 'Please note that an amount of %s is still missing.', 'solea' ), 54 solea_format_amount( $ participant->amount - $participant->amount_paid)55 solea_format_amount( $amount_left ) 55 56 ) . '<br />' . 56 57 wp_sprintf( -
solea/trunk/readme.txt
r3263905 r3271428 3 3 Tags: solea, events, management, budgeting 4 4 Requires at least: 6.0 5 Tested up to: 6. 76 Stable tag: 5. 75 Tested up to: 6.8 6 Stable tag: 5.8 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 39 39 40 40 ## Changelog ## 41 = 5.8 = 42 * [BUG] Fixed payment notification if amount is totally paid 43 41 44 = 5.7 = 42 45 * [IMP] Better handling of custom mails containing line breaks -
solea/trunk/solea.php
r3263905 r3271428 3 3 * Plugin Name: solea 4 4 * Description: A tool for organisating events and keep participants in mind. 5 * Version: 5. 75 * Version: 5.8 6 6 * Tags: solea, events, management, budgeting 7 7 * Requires at least: 6.0
Note: See TracChangeset
for help on using the changeset viewer.