Changeset 3226265
- Timestamp:
- 01/21/2025 01:32:40 PM (15 months ago)
- Location:
- solea
- Files:
-
- 8 edited
- 1 copied
-
tags/5.2 (copied) (copied from solea/trunk)
-
tags/5.2/app/tasks/class-dailymaintenance.php (modified) (1 diff)
-
tags/5.2/app/tasks/class-remindeventmanagement.php (modified) (1 diff)
-
tags/5.2/readme.txt (modified) (2 diffs)
-
tags/5.2/solea.php (modified) (1 diff)
-
trunk/app/tasks/class-dailymaintenance.php (modified) (1 diff)
-
trunk/app/tasks/class-remindeventmanagement.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/solea.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
solea/tags/5.2/app/tasks/class-dailymaintenance.php
r3179337 r3226265 37 37 $compare = $now->getTimestamp() - $registration_end->getTimestamp(); 38 38 39 if ( 0 > $compare) {39 if ( 0 >= $compare) { 40 40 continue; 41 41 } -
solea/tags/5.2/app/tasks/class-remindeventmanagement.php
r3163434 r3226265 33 33 $now = new \DateTime(); 34 34 35 35 36 $weekday = (int) $now->format( 'w' ); 36 37 foreach ( Event::list_closed_events() as $event ) { 38 if ($event->signup_allowed()) { 39 continue; 40 } 41 37 42 $registration_end = \DateTime::createFromFormat( 'Y-m-d', $event->registration_end ); 38 43 $compare = $now->getTimestamp() - $registration_end->getTimestamp(); -
solea/tags/5.2/readme.txt
r3222704 r3226265 4 4 Requires at least: 6.0 5 5 Tested up to: 6.7 6 Stable tag: 5. 16 Stable tag: 5.2 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 39 39 40 40 ## Changelog ## 41 = 5.2 = 42 * [BUG] Fixed bug closing events on reaching registration_end 43 41 44 = 5.1 = 42 45 * [BUG] Fixed installation routine -
solea/tags/5.2/solea.php
r3222704 r3226265 3 3 * Plugin Name: solea 4 4 * Description: A tool for organisating events and keep participants in mind. 5 * Version: 5. 15 * Version: 5.2 6 6 * Tags: solea, events, management, budgeting 7 7 * Requires at least: 6.0 -
solea/trunk/app/tasks/class-dailymaintenance.php
r3179337 r3226265 37 37 $compare = $now->getTimestamp() - $registration_end->getTimestamp(); 38 38 39 if ( 0 > $compare) {39 if ( 0 >= $compare) { 40 40 continue; 41 41 } -
solea/trunk/app/tasks/class-remindeventmanagement.php
r3163434 r3226265 33 33 $now = new \DateTime(); 34 34 35 35 36 $weekday = (int) $now->format( 'w' ); 36 37 foreach ( Event::list_closed_events() as $event ) { 38 if ($event->signup_allowed()) { 39 continue; 40 } 41 37 42 $registration_end = \DateTime::createFromFormat( 'Y-m-d', $event->registration_end ); 38 43 $compare = $now->getTimestamp() - $registration_end->getTimestamp(); -
solea/trunk/readme.txt
r3222704 r3226265 4 4 Requires at least: 6.0 5 5 Tested up to: 6.7 6 Stable tag: 5. 16 Stable tag: 5.2 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 39 39 40 40 ## Changelog ## 41 = 5.2 = 42 * [BUG] Fixed bug closing events on reaching registration_end 43 41 44 = 5.1 = 42 45 * [BUG] Fixed installation routine -
solea/trunk/solea.php
r3222704 r3226265 3 3 * Plugin Name: solea 4 4 * Description: A tool for organisating events and keep participants in mind. 5 * Version: 5. 15 * Version: 5.2 6 6 * Tags: solea, events, management, budgeting 7 7 * Requires at least: 6.0
Note: See TracChangeset
for help on using the changeset viewer.