Plugin Directory

Changeset 3226265


Ignore:
Timestamp:
01/21/2025 01:32:40 PM (15 months ago)
Author:
tidschi
Message:

Update to version 5.2 from GitHub

Location:
solea
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • solea/tags/5.2/app/tasks/class-dailymaintenance.php

    r3179337 r3226265  
    3737            $compare = $now->getTimestamp() - $registration_end->getTimestamp();
    3838
    39             if ( 0 > $compare ) {
     39            if ( 0 >= $compare) {
    4040                continue;
    4141            }
  • solea/tags/5.2/app/tasks/class-remindeventmanagement.php

    r3163434 r3226265  
    3333        $now = new \DateTime();
    3434
     35
    3536        $weekday = (int) $now->format( 'w' );
    3637        foreach ( Event::list_closed_events() as $event ) {
     38            if ($event->signup_allowed()) {
     39                continue;
     40            }
     41
    3742            $registration_end = \DateTime::createFromFormat( 'Y-m-d', $event->registration_end );
    3843            $compare          = $now->getTimestamp() - $registration_end->getTimestamp();
  • solea/tags/5.2/readme.txt

    r3222704 r3226265  
    44Requires at least: 6.0
    55Tested up to: 6.7
    6 Stable tag: 5.1
     6Stable tag: 5.2
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040## Changelog ##
     41= 5.2 =
     42* [BUG] Fixed bug closing events on reaching registration_end
     43
    4144= 5.1 =
    4245* [BUG] Fixed installation routine
  • solea/tags/5.2/solea.php

    r3222704 r3226265  
    33 * Plugin Name:  solea
    44 * Description: A tool for organisating events and keep participants in mind.
    5  * Version: 5.1
     5 * Version: 5.2
    66 * Tags: solea, events, management, budgeting
    77 * Requires at least: 6.0
  • solea/trunk/app/tasks/class-dailymaintenance.php

    r3179337 r3226265  
    3737            $compare = $now->getTimestamp() - $registration_end->getTimestamp();
    3838
    39             if ( 0 > $compare ) {
     39            if ( 0 >= $compare) {
    4040                continue;
    4141            }
  • solea/trunk/app/tasks/class-remindeventmanagement.php

    r3163434 r3226265  
    3333        $now = new \DateTime();
    3434
     35
    3536        $weekday = (int) $now->format( 'w' );
    3637        foreach ( Event::list_closed_events() as $event ) {
     38            if ($event->signup_allowed()) {
     39                continue;
     40            }
     41
    3742            $registration_end = \DateTime::createFromFormat( 'Y-m-d', $event->registration_end );
    3843            $compare          = $now->getTimestamp() - $registration_end->getTimestamp();
  • solea/trunk/readme.txt

    r3222704 r3226265  
    44Requires at least: 6.0
    55Tested up to: 6.7
    6 Stable tag: 5.1
     6Stable tag: 5.2
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040## Changelog ##
     41= 5.2 =
     42* [BUG] Fixed bug closing events on reaching registration_end
     43
    4144= 5.1 =
    4245* [BUG] Fixed installation routine
  • solea/trunk/solea.php

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