Plugin Directory

Changeset 3260451


Ignore:
Timestamp:
03/23/2025 11:13:46 PM (12 months ago)
Author:
tidschi
Message:

Update to version 5.5 from GitHub

Location:
solea
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • solea/tags/5.5/app/actions/events/class-informeventmanagement.php

    r3260435 r3260451  
    4040        $mail->set_message( solea_inform_management_mail( $event ) );
    4141
    42         if ( 0 < $compare ) {
     42        if ( 0 > $compare ) {
    4343            $mail->set_subject(
    4444                '[solea] ' . wp_sprintf(
     
    6060        $mail->send();
    6161        foreach ( $event->get_participants_by_group() as $group_id => $participants ) {
     62            if (0 === $group_id) {
     63                continue;
     64            }
     65
    6266            $group      = LocalGroup::where( 'id', $group_id )->first();
    6367            $group_mail = new MailLibrary();
  • solea/tags/5.5/readme.txt

    r3260441 r3260451  
    44Requires at least: 6.0
    55Tested up to: 6.7
    6 Stable tag: 5.4.1
     6Stable tag: 5.5
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040## Changelog ##
     41= 5.5 =
     42* [BUG] Fixed issue for contacting local groups in weekly report, if a participant without local group is listed
     43
    4144= 5.4.1 =
    4245* [OTH] Fixed release tag
  • solea/tags/5.5/solea.php

    r3260441 r3260451  
    33 * Plugin Name:  solea
    44 * Description: A tool for organisating events and keep participants in mind.
    5  * Version: 5.4.1
     5 * Version: 5.5
    66 * Tags: solea, events, management, budgeting
    77 * Requires at least: 6.0
  • solea/trunk/app/actions/events/class-informeventmanagement.php

    r3260435 r3260451  
    4040        $mail->set_message( solea_inform_management_mail( $event ) );
    4141
    42         if ( 0 < $compare ) {
     42        if ( 0 > $compare ) {
    4343            $mail->set_subject(
    4444                '[solea] ' . wp_sprintf(
     
    6060        $mail->send();
    6161        foreach ( $event->get_participants_by_group() as $group_id => $participants ) {
     62            if (0 === $group_id) {
     63                continue;
     64            }
     65
    6266            $group      = LocalGroup::where( 'id', $group_id )->first();
    6367            $group_mail = new MailLibrary();
  • solea/trunk/readme.txt

    r3260441 r3260451  
    44Requires at least: 6.0
    55Tested up to: 6.7
    6 Stable tag: 5.4.1
     6Stable tag: 5.5
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040## Changelog ##
     41= 5.5 =
     42* [BUG] Fixed issue for contacting local groups in weekly report, if a participant without local group is listed
     43
    4144= 5.4.1 =
    4245* [OTH] Fixed release tag
  • solea/trunk/solea.php

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