Changeset 3439908
- Timestamp:
- 01/14/2026 11:03:19 PM (2 months ago)
- Location:
- wp-lemme-know
- Files:
-
- 6 edited
- 1 copied
-
tags/0.11.0 (copied) (copied from wp-lemme-know/trunk)
-
tags/0.11.0/plugin.php (modified) (1 diff)
-
tags/0.11.0/readme.txt (modified) (2 diffs)
-
tags/0.11.0/src/settings.php (modified) (1 diff)
-
trunk/plugin.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-lemme-know/tags/0.11.0/plugin.php
r2983314 r3439908 5 5 Plugin URI: https://github.com/clash82/wp-lemme-know 6 6 Description: Sends e-mail notification for subscribers when a new post is published. 7 Version: 0.1 0.27 Version: 0.11.0 8 8 Author: Rafał Toborek 9 9 Author URI: https://kontakt.toborek.info -
wp-lemme-know/tags/0.11.0/readme.txt
r2983314 r3439908 4 4 Tags: notifications, email, newsletter, subscribe2, mailing, smtp 5 5 Requires at least: 4.6 6 Tested up to: 6. 46 Tested up to: 6.9 7 7 Requires PHP: 5.6 8 8 Stable tag: trunk … … 49 49 == Changelog == 50 50 51 = v0.11.0 = 52 * fixed: mail_body is no longer sanitized when saved. 53 51 54 = v0.10.0 = 52 55 * added: latest 50 subscribers is now displayed in the dashboard panel. -
wp-lemme-know/tags/0.11.0/src/settings.php
r2974901 r3439908 223 223 foreach ($options as $name => $v) { 224 224 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]; 226 232 } 227 233 } -
wp-lemme-know/trunk/plugin.php
r2983314 r3439908 5 5 Plugin URI: https://github.com/clash82/wp-lemme-know 6 6 Description: Sends e-mail notification for subscribers when a new post is published. 7 Version: 0.1 0.27 Version: 0.11.0 8 8 Author: Rafał Toborek 9 9 Author URI: https://kontakt.toborek.info -
wp-lemme-know/trunk/readme.txt
r2983314 r3439908 4 4 Tags: notifications, email, newsletter, subscribe2, mailing, smtp 5 5 Requires at least: 4.6 6 Tested up to: 6. 46 Tested up to: 6.9 7 7 Requires PHP: 5.6 8 8 Stable tag: trunk … … 49 49 == Changelog == 50 50 51 = v0.11.0 = 52 * fixed: mail_body is no longer sanitized when saved. 53 51 54 = v0.10.0 = 52 55 * added: latest 50 subscribers is now displayed in the dashboard panel. -
wp-lemme-know/trunk/src/settings.php
r2974901 r3439908 223 223 foreach ($options as $name => $v) { 224 224 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]; 226 232 } 227 233 }
Note: See TracChangeset
for help on using the changeset viewer.