Version Description
(2020-06-05) * Add postie_subject filter
Download this release
Release Info
Developer | WayneAllen |
Plugin | Postie |
Version | 1.9.53 |
Comparing to | |
See all releases |
Code changes from version 1.9.52 to 1.9.53
- docs/Changes.txt +3 -0
- docs/Postie.txt +1 -1
- postie-message.php +4 -0
- postie.php +2 -2
- readme.txt +5 -2
docs/Changes.txt
CHANGED
@@ -35,6 +35,9 @@ All script, style and body tags are stripped from html emails.
|
|
35 |
Attachments are now processed in the order they were attached.
|
36 |
|
37 |
== CHANGELOG ==
|
|
|
|
|
|
|
38 |
= 1.9.52 (2020-05-19)
|
39 |
* Fix issue with detecting categories when there are multiple colons in the subject line
|
40 |
|
35 |
Attachments are now processed in the order they were attached.
|
36 |
|
37 |
== CHANGELOG ==
|
38 |
+
= 1.9.53 (2020-06-05)
|
39 |
+
* Add postie_subject filter
|
40 |
+
|
41 |
= 1.9.52 (2020-05-19)
|
42 |
* Fix issue with detecting categories when there are multiple colons in the subject line
|
43 |
|
docs/Postie.txt
CHANGED
@@ -7,7 +7,7 @@ Tags: e-mail, email, post-by-email
|
|
7 |
Requires PHP: 5.3
|
8 |
Requires at least: 4.0
|
9 |
Tested up to: 5.4
|
10 |
-
Stable tag: 1.9.
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
7 |
Requires PHP: 5.3
|
8 |
Requires at least: 4.0
|
9 |
Tested up to: 5.4
|
10 |
+
Stable tag: 1.9.53
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
postie-message.php
CHANGED
@@ -1250,6 +1250,10 @@ class PostieMessage {
|
|
1250 |
DebugEcho("get_subject: extra parsing for ISO-2022-JP");
|
1251 |
$this->subject = iconv("ISO-2022-JP", "UTF-8//TRANSLIT", $this->subject);
|
1252 |
}
|
|
|
|
|
|
|
|
|
1253 |
DebugEcho("get_subject: '$this->subject'");
|
1254 |
}
|
1255 |
|
1250 |
DebugEcho("get_subject: extra parsing for ISO-2022-JP");
|
1251 |
$this->subject = iconv("ISO-2022-JP", "UTF-8//TRANSLIT", $this->subject);
|
1252 |
}
|
1253 |
+
|
1254 |
+
DebugEcho("get_subject: pre postie_subject: '$this->subject'");
|
1255 |
+
$this->subject = apply_filters('postie_subject', $this->subject);
|
1256 |
+
|
1257 |
DebugEcho("get_subject: '$this->subject'");
|
1258 |
}
|
1259 |
|
postie.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Postie
|
5 |
Plugin URI: http://PostiePlugin.com/
|
6 |
Description: Create posts via email. Significantly upgrades the Post by Email features of WordPress.
|
7 |
-
Version: 1.9.
|
8 |
Author: Wayne Allen
|
9 |
Author URI: http://PostiePlugin.com/
|
10 |
License: GPL3
|
@@ -28,7 +28,7 @@
|
|
28 |
*/
|
29 |
|
30 |
/*
|
31 |
-
$Id: postie.php
|
32 |
*/
|
33 |
|
34 |
if (!defined('WPINC')) {
|
4 |
Plugin Name: Postie
|
5 |
Plugin URI: http://PostiePlugin.com/
|
6 |
Description: Create posts via email. Significantly upgrades the Post by Email features of WordPress.
|
7 |
+
Version: 1.9.53
|
8 |
Author: Wayne Allen
|
9 |
Author URI: http://PostiePlugin.com/
|
10 |
License: GPL3
|
28 |
*/
|
29 |
|
30 |
/*
|
31 |
+
$Id: postie.php 2319062 2020-06-05 16:00:33Z WayneAllen $
|
32 |
*/
|
33 |
|
34 |
if (!defined('WPINC')) {
|
readme.txt
CHANGED
@@ -6,8 +6,8 @@ Plugin URI: http://PostiePlugin.com/
|
|
6 |
Tags: e-mail, email, post-by-email
|
7 |
Requires PHP: 5.3
|
8 |
Requires at least: 4.0
|
9 |
-
Tested up to: 5.
|
10 |
-
Stable tag: 1.9.
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
@@ -107,6 +107,9 @@ All script, style and body tags are stripped from html emails.
|
|
107 |
Attachments are now processed in the order they were attached.
|
108 |
|
109 |
== CHANGELOG ==
|
|
|
|
|
|
|
110 |
= 1.9.52 (2020-05-19)
|
111 |
* Fix issue with detecting categories when there are multiple colons in the subject line
|
112 |
|
6 |
Tags: e-mail, email, post-by-email
|
7 |
Requires PHP: 5.3
|
8 |
Requires at least: 4.0
|
9 |
+
Tested up to: 5.6
|
10 |
+
Stable tag: 1.9.53
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
107 |
Attachments are now processed in the order they were attached.
|
108 |
|
109 |
== CHANGELOG ==
|
110 |
+
= 1.9.53 (2020-06-05)
|
111 |
+
* Add postie_subject filter
|
112 |
+
|
113 |
= 1.9.52 (2020-05-19)
|
114 |
* Fix issue with detecting categories when there are multiple colons in the subject line
|
115 |
|