Plugin Directory

Changeset 3439908


Ignore:
Timestamp:
01/14/2026 11:03:19 PM (2 months ago)
Author:
clash82
Message:

Update to version 0.11.0 from GitHub

Location:
wp-lemme-know
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-lemme-know/tags/0.11.0/plugin.php

    r2983314 r3439908  
    55Plugin URI:  https://github.com/clash82/wp-lemme-know
    66Description: Sends e-mail notification for subscribers when a new post is published.
    7 Version:     0.10.2
     7Version:     0.11.0
    88Author:      Rafał Toborek
    99Author URI:  https://kontakt.toborek.info
  • wp-lemme-know/tags/0.11.0/readme.txt

    r2983314 r3439908  
    44Tags: notifications, email, newsletter, subscribe2, mailing, smtp
    55Requires at least: 4.6
    6 Tested up to: 6.4
     6Tested up to: 6.9
    77Requires PHP: 5.6
    88Stable tag: trunk
     
    4949== Changelog ==
    5050
     51= v0.11.0 =
     52* fixed: mail_body is no longer sanitized when saved.
     53
    5154= v0.10.0 =
    5255* added: latest 50 subscribers is now displayed in the dashboard panel.
  • wp-lemme-know/tags/0.11.0/src/settings.php

    r2974901 r3439908  
    223223    foreach ($options as $name => $v) {
    224224        if (isset($input[$name])) {
    225             $options[$name] = sanitize_text_field($input[$name]);
     225            // we don't want to sanitize text for mail body, tags should be included
     226            if ($name !== 'mail_body') {
     227                $options[$name] = sanitize_text_field($input[$name]);
     228
     229                continue;
     230            }
     231            $options[$name] = $input[$name];
    226232        }
    227233    }
  • wp-lemme-know/trunk/plugin.php

    r2983314 r3439908  
    55Plugin URI:  https://github.com/clash82/wp-lemme-know
    66Description: Sends e-mail notification for subscribers when a new post is published.
    7 Version:     0.10.2
     7Version:     0.11.0
    88Author:      Rafał Toborek
    99Author URI:  https://kontakt.toborek.info
  • wp-lemme-know/trunk/readme.txt

    r2983314 r3439908  
    44Tags: notifications, email, newsletter, subscribe2, mailing, smtp
    55Requires at least: 4.6
    6 Tested up to: 6.4
     6Tested up to: 6.9
    77Requires PHP: 5.6
    88Stable tag: trunk
     
    4949== Changelog ==
    5050
     51= v0.11.0 =
     52* fixed: mail_body is no longer sanitized when saved.
     53
    5154= v0.10.0 =
    5255* added: latest 50 subscribers is now displayed in the dashboard panel.
  • wp-lemme-know/trunk/src/settings.php

    r2974901 r3439908  
    223223    foreach ($options as $name => $v) {
    224224        if (isset($input[$name])) {
    225             $options[$name] = sanitize_text_field($input[$name]);
     225            // we don't want to sanitize text for mail body, tags should be included
     226            if ($name !== 'mail_body') {
     227                $options[$name] = sanitize_text_field($input[$name]);
     228
     229                continue;
     230            }
     231            $options[$name] = $input[$name];
    226232        }
    227233    }
Note: See TracChangeset for help on using the changeset viewer.