Plugin Directory

Changeset 3271428


Ignore:
Timestamp:
04/12/2025 10:20:45 AM (12 months ago)
Author:
tidschi
Message:

Update to version 5.8 from GitHub

Location:
solea
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • solea/tags/5.8/app/mails/payment-successfull-mail.php

    r3163434 r3271428  
    4141                ) . '<br /><br />';
    4242
     43    $amount_left = $participant->amount - $participant->amount_paid;
    4344    // Check if the payment is complete.
    44     if ( $participant->amount === $participant->amount_paid ) {
     45    if ( 0 === (int)$amount_left ) {
    4546        $return .= __( 'All required payment is now complete, and you are fully registered for the event.', 'solea' );
    4647    } else {
     
    5253                    /* Translators: %s Amojunt that is missing */
    5354            __( '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 )
    5556        ) . '<br />' .
    5657                    wp_sprintf(
  • solea/tags/5.8/readme.txt

    r3263905 r3271428  
    33Tags: solea, events, management, budgeting
    44Requires at least: 6.0
    5 Tested up to: 6.7
    6 Stable tag: 5.7
     5Tested up to: 6.8
     6Stable tag: 5.8
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040## Changelog ##
     41= 5.8 =
     42* [BUG] Fixed payment notification if amount is totally paid
     43
    4144= 5.7 =
    4245* [IMP] Better handling of custom mails containing line breaks
  • solea/tags/5.8/solea.php

    r3263905 r3271428  
    33 * Plugin Name:  solea
    44 * Description: A tool for organisating events and keep participants in mind.
    5  * Version: 5.7
     5 * Version: 5.8
    66 * Tags: solea, events, management, budgeting
    77 * Requires at least: 6.0
  • solea/trunk/app/mails/payment-successfull-mail.php

    r3163434 r3271428  
    4141                ) . '<br /><br />';
    4242
     43    $amount_left = $participant->amount - $participant->amount_paid;
    4344    // Check if the payment is complete.
    44     if ( $participant->amount === $participant->amount_paid ) {
     45    if ( 0 === (int)$amount_left ) {
    4546        $return .= __( 'All required payment is now complete, and you are fully registered for the event.', 'solea' );
    4647    } else {
     
    5253                    /* Translators: %s Amojunt that is missing */
    5354            __( '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 )
    5556        ) . '<br />' .
    5657                    wp_sprintf(
  • solea/trunk/readme.txt

    r3263905 r3271428  
    33Tags: solea, events, management, budgeting
    44Requires at least: 6.0
    5 Tested up to: 6.7
    6 Stable tag: 5.7
     5Tested up to: 6.8
     6Stable tag: 5.8
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040## Changelog ##
     41= 5.8 =
     42* [BUG] Fixed payment notification if amount is totally paid
     43
    4144= 5.7 =
    4245* [IMP] Better handling of custom mails containing line breaks
  • solea/trunk/solea.php

    r3263905 r3271428  
    33 * Plugin Name:  solea
    44 * Description: A tool for organisating events and keep participants in mind.
    5  * Version: 5.7
     5 * Version: 5.8
    66 * Tags: solea, events, management, budgeting
    77 * Requires at least: 6.0
Note: See TracChangeset for help on using the changeset viewer.