Version Description
(2015-10-01) = * Fix bug is new linkify logic
Download this release
Release Info
Developer | WayneAllen |
Plugin | Postie |
Version | 1.7.14 |
Comparing to | |
See all releases |
Code changes from version 1.7.13 to 1.7.14
- docs/Changes.txt +4 -1
- docs/Postie.txt +1 -1
- postie-functions.php +8 -6
- postie.php +3 -3
- readme.txt +5 -2
docs/Changes.txt
CHANGED
@@ -27,6 +27,9 @@ All script, style and body tags are stripped from html emails.
|
|
27 |
Attachments are now processed in the order they were attached.
|
28 |
|
29 |
== CHANGELOG ==
|
|
|
|
|
|
|
30 |
= 1.7.13 (2015-10-01) =
|
31 |
* Fix support for "Automatically convert urls to links" with html
|
32 |
* Fix support for "date" tag with html
|
@@ -34,7 +37,7 @@ Attachments are now processed in the order they were attached.
|
|
34 |
|
35 |
= 1.7.12 (2015-09-25) =
|
36 |
* Add new setting to ignore email read/unread state
|
37 |
-
* Fix support for "tag
|
38 |
|
39 |
= 1.7.11 (2015-09-18) =
|
40 |
* Add FILEID to image and video templates
|
27 |
Attachments are now processed in the order they were attached.
|
28 |
|
29 |
== CHANGELOG ==
|
30 |
+
= 1.7.14 (2015-10-01) =
|
31 |
+
* Fix bug is new linkify logic
|
32 |
+
|
33 |
= 1.7.13 (2015-10-01) =
|
34 |
* Fix support for "Automatically convert urls to links" with html
|
35 |
* Fix support for "date" tag with html
|
37 |
|
38 |
= 1.7.12 (2015-09-25) =
|
39 |
* Add new setting to ignore email read/unread state
|
40 |
+
* Fix support for "tag" tags in html and plain messages
|
41 |
|
42 |
= 1.7.11 (2015-09-18) =
|
43 |
* Add FILEID to image and video templates
|
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.3.1
|
9 |
-
Stable tag: 1.7.
|
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.3.1
|
9 |
+
Stable tag: 1.7.14
|
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 |
//to turn on debug output add the following line to wp-config.php
|
@@ -521,12 +521,14 @@ function filter_Linkify($text, $isHtml) {
|
|
521 |
DebugEcho("begin: filter_linkify");
|
522 |
if ($isHtml) {
|
523 |
$html = LoadDOM($text);
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
|
|
|
|
|
|
528 |
}
|
529 |
-
$ret = $html->save();
|
530 |
} else {
|
531 |
$ret = make_links($text);
|
532 |
}
|
1 |
<?php
|
2 |
/*
|
3 |
+
$Id: postie-functions.php 1257771 2015-10-01 22:19:10Z WayneAllen $
|
4 |
*/
|
5 |
|
6 |
//to turn on debug output add the following line to wp-config.php
|
521 |
DebugEcho("begin: filter_linkify");
|
522 |
if ($isHtml) {
|
523 |
$html = LoadDOM($text);
|
524 |
+
if (false !== $html) {
|
525 |
+
//DebugEcho("filter_linkify: " . $html->save());
|
526 |
+
foreach ($html->find('text') as $element) {
|
527 |
+
//DebugEcho("filter_linkify: " . $element->innertext);
|
528 |
+
$element->innertext = make_links($element->innertext);
|
529 |
+
}
|
530 |
+
$ret = $html->save();
|
531 |
}
|
|
|
532 |
} else {
|
533 |
$ret = make_links($text);
|
534 |
}
|
postie.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Postie
|
5 |
Plugin URI: http://PostiePlugin.com/
|
6 |
Description: Create posts via email. Signifigantly upgrades the Post by Email features of Word Press.
|
7 |
-
Version: 1.7.
|
8 |
Author: Wayne Allen
|
9 |
Author URI: http://PostiePlugin.com/
|
10 |
License: GPL2
|
@@ -28,11 +28,11 @@
|
|
28 |
*/
|
29 |
|
30 |
/*
|
31 |
-
$Id: postie.php
|
32 |
*/
|
33 |
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
|
34 |
|
35 |
-
define('POSTIE_VERSION', '1.7.
|
36 |
define("POSTIE_ROOT", dirname(__FILE__));
|
37 |
define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
|
38 |
|
4 |
Plugin Name: Postie
|
5 |
Plugin URI: http://PostiePlugin.com/
|
6 |
Description: Create posts via email. Signifigantly upgrades the Post by Email features of Word Press.
|
7 |
+
Version: 1.7.14
|
8 |
Author: Wayne Allen
|
9 |
Author URI: http://PostiePlugin.com/
|
10 |
License: GPL2
|
28 |
*/
|
29 |
|
30 |
/*
|
31 |
+
$Id: postie.php 1257771 2015-10-01 22:19:10Z WayneAllen $
|
32 |
*/
|
33 |
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
|
34 |
|
35 |
+
define('POSTIE_VERSION', '1.7.14');
|
36 |
define("POSTIE_ROOT", dirname(__FILE__));
|
37 |
define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
|
38 |
|
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.3.1
|
9 |
-
Stable tag: 1.7.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -235,6 +235,9 @@ All script, style and body tags are stripped from html emails.
|
|
235 |
Attachments are now processed in the order they were attached.
|
236 |
|
237 |
== CHANGELOG ==
|
|
|
|
|
|
|
238 |
= 1.7.13 (2015-10-01) =
|
239 |
* Fix support for "Automatically convert urls to links" with html
|
240 |
* Fix support for "date" tag with html
|
@@ -242,7 +245,7 @@ Attachments are now processed in the order they were attached.
|
|
242 |
|
243 |
= 1.7.12 (2015-09-25) =
|
244 |
* Add new setting to ignore email read/unread state
|
245 |
-
* Fix support for "tag
|
246 |
|
247 |
= 1.7.11 (2015-09-18) =
|
248 |
* Add FILEID to image and video templates
|
6 |
Tags: e-mail, email, post-by-email
|
7 |
Requires at least: 3.3.0
|
8 |
Tested up to: 4.3.1
|
9 |
+
Stable tag: 1.7.14
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
235 |
Attachments are now processed in the order they were attached.
|
236 |
|
237 |
== CHANGELOG ==
|
238 |
+
= 1.7.14 (2015-10-01) =
|
239 |
+
* Fix bug is new linkify logic
|
240 |
+
|
241 |
= 1.7.13 (2015-10-01) =
|
242 |
* Fix support for "Automatically convert urls to links" with html
|
243 |
* Fix support for "date" tag with html
|
245 |
|
246 |
= 1.7.12 (2015-09-25) =
|
247 |
* Add new setting to ignore email read/unread state
|
248 |
+
* Fix support for "tag" tags in html and plain messages
|
249 |
|
250 |
= 1.7.11 (2015-09-18) =
|
251 |
* Add FILEID to image and video templates
|