Version Description
(2017-02-06) = * Fixed bug where Postie won't run on PHP versions prior to 5.5.
Download this release
Release Info
Developer | WayneAllen |
Plugin | Postie |
Version | 1.8.30 |
Comparing to | |
See all releases |
Code changes from version 1.8.29 to 1.8.30
- docs/Changes.txt +5 -2
- docs/Postie.txt +1 -1
- postie-functions.php +3 -2
- postie.php +3 -3
- readme.txt +6 -4
docs/Changes.txt
CHANGED
@@ -35,14 +35,17 @@ 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.8.29 (2017-02-06) =
|
39 |
-
* Fixed bug where "Include Featured Image in Post" = No was not being respected with inline images (iOS mail)
|
40 |
|
41 |
= 1.8.28 (2017-01-26) =
|
42 |
* Fixed bug where having ignored files can cause email body to be blank.
|
43 |
|
44 |
= 1.8.27 (2017-01-26) =
|
45 |
-
* Added postie_raw action
|
46 |
|
47 |
= 1.8.26 (2017-01-24) =
|
48 |
* Fix bug where WordPress timezone was not being taken into effect.
|
35 |
Attachments are now processed in the order they were attached.
|
36 |
|
37 |
== CHANGELOG ==
|
38 |
+
= 1.8.30 (2017-02-06) =
|
39 |
+
* Fixed bug where Postie won't run on PHP versions prior to 5.5.
|
40 |
+
|
41 |
= 1.8.29 (2017-02-06) =
|
42 |
+
* Fixed bug where "Include Featured Image in Post" = No was not being respected with inline images (iOS mail).
|
43 |
|
44 |
= 1.8.28 (2017-01-26) =
|
45 |
* Fixed bug where having ignored files can cause email body to be blank.
|
46 |
|
47 |
= 1.8.27 (2017-01-26) =
|
48 |
+
* Added postie_raw action.
|
49 |
|
50 |
= 1.8.26 (2017-01-24) =
|
51 |
* Fix bug where WordPress timezone was not being taken into effect.
|
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.7.2
|
9 |
-
Stable tag: 1.8.
|
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.7.2
|
9 |
+
Stable tag: 1.8.30
|
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
|
4 |
*/
|
5 |
|
6 |
class PostiePostModifiers {
|
@@ -3083,7 +3083,8 @@ function postie_test_config() {
|
|
3083 |
}
|
3084 |
|
3085 |
if (defined('DB_COLLATE')) {
|
3086 |
-
|
|
|
3087 |
DebugEcho("DB_COLLATE: database default", true);
|
3088 |
} else {
|
3089 |
DebugEcho("DB_COLLATE: " . DB_COLLATE, true);
|
1 |
<?php
|
2 |
/*
|
3 |
+
$Id: postie-functions.php 1590421 2017-02-07 03:29:06Z WayneAllen $
|
4 |
*/
|
5 |
|
6 |
class PostiePostModifiers {
|
3083 |
}
|
3084 |
|
3085 |
if (defined('DB_COLLATE')) {
|
3086 |
+
$db_collate = DB_COLLATE;
|
3087 |
+
if (empty($db_collate)) {
|
3088 |
DebugEcho("DB_COLLATE: database default", true);
|
3089 |
} else {
|
3090 |
DebugEcho("DB_COLLATE: " . DB_COLLATE, true);
|
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.
|
8 |
Author: Wayne Allen
|
9 |
Author URI: http://PostiePlugin.com/
|
10 |
License: GPL2
|
@@ -28,7 +28,7 @@
|
|
28 |
*/
|
29 |
|
30 |
/*
|
31 |
-
$Id: postie.php
|
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.
|
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.30
|
8 |
Author: Wayne Allen
|
9 |
Author URI: http://PostiePlugin.com/
|
10 |
License: GPL2
|
28 |
*/
|
29 |
|
30 |
/*
|
31 |
+
$Id: postie.php 1590422 2017-02-07 03:31:27Z 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.30');
|
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.7.2
|
9 |
-
Stable tag: 1.8.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -242,14 +242,17 @@ All script, style and body tags are stripped from html emails.
|
|
242 |
Attachments are now processed in the order they were attached.
|
243 |
|
244 |
== CHANGELOG ==
|
|
|
|
|
|
|
245 |
= 1.8.29 (2017-02-06) =
|
246 |
-
* Fixed bug where "Include Featured Image in Post" = No was not being respected with inline images (iOS mail)
|
247 |
|
248 |
= 1.8.28 (2017-01-26) =
|
249 |
* Fixed bug where having ignored files can cause email body to be blank.
|
250 |
|
251 |
= 1.8.27 (2017-01-26) =
|
252 |
-
* Added postie_raw action
|
253 |
|
254 |
= 1.8.26 (2017-01-24) =
|
255 |
* Fix bug where WordPress timezone was not being taken into effect.
|
@@ -1460,4 +1463,3 @@ plugin. And the rest is history :)
|
|
1460 |
*
|
1461 |
= 0.1 - 2004-06 =
|
1462 |
* First release
|
1463 |
-
|
6 |
Tags: e-mail, email, post-by-email
|
7 |
Requires at least: 3.3.0
|
8 |
Tested up to: 4.7.2
|
9 |
+
Stable tag: 1.8.30
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
242 |
Attachments are now processed in the order they were attached.
|
243 |
|
244 |
== CHANGELOG ==
|
245 |
+
= 1.8.30 (2017-02-06) =
|
246 |
+
* Fixed bug where Postie won't run on PHP versions prior to 5.5.
|
247 |
+
|
248 |
= 1.8.29 (2017-02-06) =
|
249 |
+
* Fixed bug where "Include Featured Image in Post" = No was not being respected with inline images (iOS mail).
|
250 |
|
251 |
= 1.8.28 (2017-01-26) =
|
252 |
* Fixed bug where having ignored files can cause email body to be blank.
|
253 |
|
254 |
= 1.8.27 (2017-01-26) =
|
255 |
+
* Added postie_raw action.
|
256 |
|
257 |
= 1.8.26 (2017-01-24) =
|
258 |
* Fix bug where WordPress timezone was not being taken into effect.
|
1463 |
*
|
1464 |
= 0.1 - 2004-06 =
|
1465 |
* First release
|
|