Changeset 3260435
- Timestamp:
- 03/23/2025 10:50:18 PM (12 months ago)
- Location:
- solea
- Files:
-
- 10 edited
- 1 copied
-
tags/5.4 (copied) (copied from solea/trunk)
-
tags/5.4/app/actions/events/class-informeventmanagement.php (modified) (1 diff)
-
tags/5.4/app/tasks/class-dailymaintenance.php (modified) (1 diff)
-
tags/5.4/app/tasks/class-weeklyinformmanagement.php (modified) (1 diff)
-
tags/5.4/readme.txt (modified) (1 diff)
-
tags/5.4/solea.php (modified) (1 diff)
-
trunk/app/actions/events/class-informeventmanagement.php (modified) (1 diff)
-
trunk/app/tasks/class-dailymaintenance.php (modified) (1 diff)
-
trunk/app/tasks/class-weeklyinformmanagement.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/solea.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
solea/tags/5.4/app/actions/events/class-informeventmanagement.php
r3163434 r3260435 40 40 $mail->set_message( solea_inform_management_mail( $event ) ); 41 41 42 if ( 0 >$compare ) {42 if ( 0 < $compare ) { 43 43 $mail->set_subject( 44 44 '[solea] ' . wp_sprintf( -
solea/tags/5.4/app/tasks/class-dailymaintenance.php
r3226265 r3260435 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.4/app/tasks/class-weeklyinformmanagement.php
r3163434 r3260435 31 31 $now = new \DateTime(); 32 32 foreach ( Event::list_open_events() as $event ) { 33 if ( ! $event->weekly_report ) { 34 continue; 35 } 36 37 InformEventManagement::execute( $event ); 33 if ( $event->weekly_report ) { 34 InformEventManagement::execute( $event ); 35 } 38 36 } 39 37 } -
solea/tags/5.4/readme.txt
r3235541 r3260435 39 39 40 40 ## Changelog ## 41 = 5.4 = 42 * [BUG] Fixed issue for checking correct closure date for reports 43 * [BUG] Fix sending reports to event management 44 41 45 = 5.3.1 = 42 [OTH] Fixed release tag46 * [OTH] Fixed release tag 43 47 44 48 = 5.3 = -
solea/tags/5.4/solea.php
r3235541 r3260435 3 3 * Plugin Name: solea 4 4 * Description: A tool for organisating events and keep participants in mind. 5 * Version: 5. 3.15 * Version: 5.4 6 6 * Tags: solea, events, management, budgeting 7 7 * Requires at least: 6.0 -
solea/trunk/app/actions/events/class-informeventmanagement.php
r3163434 r3260435 40 40 $mail->set_message( solea_inform_management_mail( $event ) ); 41 41 42 if ( 0 >$compare ) {42 if ( 0 < $compare ) { 43 43 $mail->set_subject( 44 44 '[solea] ' . wp_sprintf( -
solea/trunk/app/tasks/class-dailymaintenance.php
r3226265 r3260435 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-weeklyinformmanagement.php
r3163434 r3260435 31 31 $now = new \DateTime(); 32 32 foreach ( Event::list_open_events() as $event ) { 33 if ( ! $event->weekly_report ) { 34 continue; 35 } 36 37 InformEventManagement::execute( $event ); 33 if ( $event->weekly_report ) { 34 InformEventManagement::execute( $event ); 35 } 38 36 } 39 37 } -
solea/trunk/readme.txt
r3235541 r3260435 39 39 40 40 ## Changelog ## 41 = 5.4 = 42 * [BUG] Fixed issue for checking correct closure date for reports 43 * [BUG] Fix sending reports to event management 44 41 45 = 5.3.1 = 42 [OTH] Fixed release tag46 * [OTH] Fixed release tag 43 47 44 48 = 5.3 = -
solea/trunk/solea.php
r3235541 r3260435 3 3 * Plugin Name: solea 4 4 * Description: A tool for organisating events and keep participants in mind. 5 * Version: 5. 3.15 * Version: 5.4 6 6 * Tags: solea, events, management, budgeting 7 7 * Requires at least: 6.0
Note: See TracChangeset
for help on using the changeset viewer.