Plugin Directory

Changeset 3263905


Ignore:
Timestamp:
03/29/2025 06:19:48 PM (12 months ago)
Author:
tidschi
Message:

Update to version 5.7 from GitHub

Location:
solea
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • solea/tags/5.7/app/routers/class-dashboardrouter.php

    r3221661 r3263905  
    351351                            $recipients = sanitize_text_field( wp_unslash( $_POST['recipient'] ) );
    352352                            $subject    = sanitize_text_field( wp_unslash( $_POST['subject'] ) );
    353                             $mailtext   = wp_kses_post( wp_unslash( $_POST['mail-text'] ), );
     353                            $mailtext   = nl2br(wp_kses_post( wp_unslash( $_POST['mail-text'] ) ));
    354354
    355355                            $mail = new MailLibrary();
  • solea/tags/5.7/readme.txt

    r3260463 r3263905  
    44Requires at least: 6.0
    55Tested up to: 6.7
    6 Stable tag: 5.6
     6Stable tag: 5.7
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040## Changelog ##
     41= 5.7 =
     42* [IMP] Better handling of custom mails containing line breaks
     43
    4144= 5.6 =
    4245* [BUG] Fixed issue on calculating text for local groups for weekly inform mails
  • solea/tags/5.7/solea.php

    r3260463 r3263905  
    33 * Plugin Name:  solea
    44 * Description: A tool for organisating events and keep participants in mind.
    5  * Version: 5.6
     5 * Version: 5.7
    66 * Tags: solea, events, management, budgeting
    77 * Requires at least: 6.0
  • solea/trunk/app/routers/class-dashboardrouter.php

    r3221661 r3263905  
    351351                            $recipients = sanitize_text_field( wp_unslash( $_POST['recipient'] ) );
    352352                            $subject    = sanitize_text_field( wp_unslash( $_POST['subject'] ) );
    353                             $mailtext   = wp_kses_post( wp_unslash( $_POST['mail-text'] ), );
     353                            $mailtext   = nl2br(wp_kses_post( wp_unslash( $_POST['mail-text'] ) ));
    354354
    355355                            $mail = new MailLibrary();
  • solea/trunk/readme.txt

    r3260463 r3263905  
    44Requires at least: 6.0
    55Tested up to: 6.7
    6 Stable tag: 5.6
     6Stable tag: 5.7
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040## Changelog ##
     41= 5.7 =
     42* [IMP] Better handling of custom mails containing line breaks
     43
    4144= 5.6 =
    4245* [BUG] Fixed issue on calculating text for local groups for weekly inform mails
  • solea/trunk/solea.php

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