Postie - Version 1.8.12

Version Description

(2016-10-25) = * Fix bug in postie_email_notify_body filter where the modified body is not used for the email.

Download this release

Release Info

Developer WayneAllen
Plugin Icon 128x128 Postie
Version 1.8.12
Comparing to
See all releases

Code changes from version 1.8.11 to 1.8.12

Files changed (5) hide show
  1. docs/Changes.txt +3 -0
  2. docs/Postie.txt +1 -1
  3. postie-functions.php +2 -2
  4. postie.php +3 -3
  5. readme.txt +5 -1
docs/Changes.txt CHANGED
@@ -32,6 +32,9 @@ All script, style and body tags are stripped from html emails.
32
  Attachments are now processed in the order they were attached.
33
 
34
  == CHANGELOG ==
 
 
 
35
  = 1.8.11 (2016-10-24) =
36
  * Support Dovecot IMAP server better
37
 
32
  Attachments are now processed in the order they were attached.
33
 
34
  == CHANGELOG ==
35
+ = 1.8.12 (2016-10-25) =
36
+ * Fix bug in postie_email_notify_body filter where the modified body is not used for the email.
37
+
38
  = 1.8.11 (2016-10-24) =
39
  * Support Dovecot IMAP server better
40
 
docs/Postie.txt CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://PostiePlugin.com/
6
  Tags: e-mail, email, post-by-email
7
  Requires at least: 3.3.0
8
  Tested up to: 4.6.1
9
- Stable tag: 1.8.11
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
6
  Tags: e-mail, email, post-by-email
7
  Requires at least: 3.3.0
8
  Tested up to: 4.6.1
9
+ Stable tag: 1.8.12
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
postie-functions.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- $Id: postie-functions.php 1521268 2016-10-24 17:27:21Z WayneAllen $
4
  */
5
 
6
  class PostiePostModifiers {
@@ -1767,7 +1767,7 @@ function postie_email_notify($email, $recipients, $postid) {
1767
  $subject = "Successfully posted to $blogname";
1768
  $subject = apply_filters('postie_email_notify_subject', $subject, $email, $postid);
1769
 
1770
- $message = apply_filters('postie_email_notify_body', $message, $email, $postid);
1771
 
1772
  DebugEcho("postie_email_notify: To:");
1773
  DebugDump($recipients);
1
  <?php
2
  /*
3
+ $Id: postie-functions.php 1522048 2016-10-25 18:10:24Z WayneAllen $
4
  */
5
 
6
  class PostiePostModifiers {
1767
  $subject = "Successfully posted to $blogname";
1768
  $subject = apply_filters('postie_email_notify_subject', $subject, $email, $postid);
1769
 
1770
+ $mailtext = apply_filters('postie_email_notify_body', $mailtext, $email, $postid);
1771
 
1772
  DebugEcho("postie_email_notify: To:");
1773
  DebugDump($recipients);
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.8.11
8
  Author: Wayne Allen
9
  Author URI: http://PostiePlugin.com/
10
  License: GPL2
@@ -28,7 +28,7 @@
28
  */
29
 
30
  /*
31
- $Id: postie.php 1521551 2016-10-25 03:35:04Z WayneAllen $
32
  */
33
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib/fException.php");
34
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib/fUnexpectedException.php");
@@ -49,7 +49,7 @@ require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib/pPop3MailServer.php"
49
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib_autolink.php");
50
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
51
 
52
- define('POSTIE_VERSION', '1.8.11');
53
  define("POSTIE_ROOT", dirname(__FILE__));
54
  define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
55
 
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.8.12
8
  Author: Wayne Allen
9
  Author URI: http://PostiePlugin.com/
10
  License: GPL2
28
  */
29
 
30
  /*
31
+ $Id: postie.php 1522050 2016-10-25 18:11:41Z WayneAllen $
32
  */
33
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib/fException.php");
34
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib/fUnexpectedException.php");
49
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib_autolink.php");
50
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
51
 
52
+ define('POSTIE_VERSION', '1.8.12');
53
  define("POSTIE_ROOT", dirname(__FILE__));
54
  define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
55
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://PostiePlugin.com/
6
  Tags: e-mail, email, post-by-email
7
  Requires at least: 3.3.0
8
  Tested up to: 4.6.1
9
- Stable tag: 1.8.11
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -240,6 +240,9 @@ All script, style and body tags are stripped from html emails.
240
  Attachments are now processed in the order they were attached.
241
 
242
  == CHANGELOG ==
 
 
 
243
  = 1.8.11 (2016-10-24) =
244
  * Support Dovecot IMAP server better
245
 
@@ -1395,3 +1398,4 @@ plugin. And the rest is history :)
1395
  *
1396
  = 0.1 - 2004-06 =
1397
  * First release
 
6
  Tags: e-mail, email, post-by-email
7
  Requires at least: 3.3.0
8
  Tested up to: 4.6.1
9
+ Stable tag: 1.8.12
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
240
  Attachments are now processed in the order they were attached.
241
 
242
  == CHANGELOG ==
243
+ = 1.8.12 (2016-10-25) =
244
+ * Fix bug in postie_email_notify_body filter where the modified body is not used for the email.
245
+
246
  = 1.8.11 (2016-10-24) =
247
  * Support Dovecot IMAP server better
248
 
1398
  *
1399
  = 0.1 - 2004-06 =
1400
  * First release
1401
+