Version Description
(2014.01.12) = * Reverted text encoding change in 1.5.17.
Download this release
Release Info
Developer | WayneAllen |
Plugin | Postie |
Version | 1.5.18 |
Comparing to | |
See all releases |
Code changes from version 1.5.17 to 1.5.18
- Revision +0 -2
- docs/Changes.txt +4 -0
- docs/Postie.txt +1 -1
- postie-functions.php +2 -2
- postie.php +3 -3
- readme.txt +5 -1
Revision
CHANGED
@@ -1,2 +0,0 @@
|
|
1 |
-
Revision: 825716
|
2 |
-
Last Changed Date: 2013-12-17 21:46:53 -0800 (Tue, 17 Dec 2013)
|
|
|
|
docs/Changes.txt
CHANGED
@@ -22,6 +22,10 @@ All script, style and body tags are stripped from html emails.
|
|
22 |
Attachments are now processed in the order they were attached.
|
23 |
|
24 |
== CHANGELOG ==
|
|
|
|
|
|
|
|
|
25 |
= 1.5.17 (2013.12.19) =
|
26 |
* Fixed date calculation in test screen.
|
27 |
* Fixed text encoding issues for systems with PHP 5.4
|
22 |
Attachments are now processed in the order they were attached.
|
23 |
|
24 |
== CHANGELOG ==
|
25 |
+
= 1.5.18 (2014.01.12) =
|
26 |
+
* Reverted text encoding change in 1.5.17.
|
27 |
+
|
28 |
+
|
29 |
= 1.5.17 (2013.12.19) =
|
30 |
* Fixed date calculation in test screen.
|
31 |
* Fixed text encoding issues for systems with PHP 5.4
|
docs/Postie.txt
CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://PostiePlugin.com/
|
|
6 |
Tags: e-mail, email
|
7 |
Requires at least: 3.0
|
8 |
Tested up to: 3.8
|
9 |
-
Stable tag: 1.5.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
6 |
Tags: e-mail, email
|
7 |
Requires at least: 3.0
|
8 |
Tested up to: 3.8
|
9 |
+
Stable tag: 1.5.18
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
postie-functions.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
$Id: postie-functions.php
|
5 |
*/
|
6 |
|
7 |
//to turn on debug output add the following line to wp-config.php
|
@@ -1086,7 +1086,7 @@ function GetContent($part, &$attachments, $post_id, $poster, $config) {
|
|
1086 |
//$meta_return = "<div>$meta_return</div>\n";
|
1087 |
} else {
|
1088 |
DebugEcho("html not allowed (htmlentities)");
|
1089 |
-
$meta_return .= htmlentities($part->body
|
1090 |
}
|
1091 |
$meta_return = filter_StripPGP($meta_return);
|
1092 |
//DebugEcho("meta return: $meta_return");
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
$Id: postie-functions.php 837484 2014-01-13 05:31:23Z WayneAllen $
|
5 |
*/
|
6 |
|
7 |
//to turn on debug output add the following line to wp-config.php
|
1086 |
//$meta_return = "<div>$meta_return</div>\n";
|
1087 |
} else {
|
1088 |
DebugEcho("html not allowed (htmlentities)");
|
1089 |
+
$meta_return .= htmlentities($part->body);
|
1090 |
}
|
1091 |
$meta_return = filter_StripPGP($meta_return);
|
1092 |
//DebugEcho("meta return: $meta_return");
|
postie.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Postie
|
5 |
Plugin URI: http://PostiePlugin.com/
|
6 |
Description: Signifigantly upgrades the posting by mail features of Word Press (See <a href='options-general.php?page=postie/postie.php'>Settings and options</a>) to configure your e-mail settings. See the <a href='http://wordpress.org/extend/plugins/postie/other_notes'>Readme</a> for usage. Visit the <a href='http://wordpress.org/support/plugin/postie'>postie forum</a> for support.
|
7 |
-
Version: 1.5.
|
8 |
Author: Wayne Allen
|
9 |
Author URI: http://allens-home.com/
|
10 |
License: GPL2
|
@@ -27,10 +27,10 @@
|
|
27 |
*/
|
28 |
|
29 |
/*
|
30 |
-
$Id: postie.php
|
31 |
*/
|
32 |
|
33 |
-
define('POSTIE_VERSION', '1.5.
|
34 |
define("POSTIE_ROOT", dirname(__FILE__));
|
35 |
define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
|
36 |
|
4 |
Plugin Name: Postie
|
5 |
Plugin URI: http://PostiePlugin.com/
|
6 |
Description: Signifigantly upgrades the posting by mail features of Word Press (See <a href='options-general.php?page=postie/postie.php'>Settings and options</a>) to configure your e-mail settings. See the <a href='http://wordpress.org/extend/plugins/postie/other_notes'>Readme</a> for usage. Visit the <a href='http://wordpress.org/support/plugin/postie'>postie forum</a> for support.
|
7 |
+
Version: 1.5.18
|
8 |
Author: Wayne Allen
|
9 |
Author URI: http://allens-home.com/
|
10 |
License: GPL2
|
27 |
*/
|
28 |
|
29 |
/*
|
30 |
+
$Id: postie.php 837484 2014-01-13 05:31:23Z WayneAllen $
|
31 |
*/
|
32 |
|
33 |
+
define('POSTIE_VERSION', '1.5.18');
|
34 |
define("POSTIE_ROOT", dirname(__FILE__));
|
35 |
define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
|
36 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://PostiePlugin.com/
|
|
6 |
Tags: e-mail, email
|
7 |
Requires at least: 3.0
|
8 |
Tested up to: 3.8
|
9 |
-
Stable tag: 1.5.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -445,6 +445,10 @@ All script, style and body tags are stripped from html emails.
|
|
445 |
Attachments are now processed in the order they were attached.
|
446 |
|
447 |
== CHANGELOG ==
|
|
|
|
|
|
|
|
|
448 |
= 1.5.17 (2013.12.19) =
|
449 |
* Fixed date calculation in test screen.
|
450 |
* Fixed text encoding issues for systems with PHP 5.4
|
6 |
Tags: e-mail, email
|
7 |
Requires at least: 3.0
|
8 |
Tested up to: 3.8
|
9 |
+
Stable tag: 1.5.18
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
445 |
Attachments are now processed in the order they were attached.
|
446 |
|
447 |
== CHANGELOG ==
|
448 |
+
= 1.5.18 (2014.01.12) =
|
449 |
+
* Reverted text encoding change in 1.5.17.
|
450 |
+
|
451 |
+
|
452 |
= 1.5.17 (2013.12.19) =
|
453 |
* Fixed date calculation in test screen.
|
454 |
* Fixed text encoding issues for systems with PHP 5.4
|