Postie - Version 1.7.1

Version Description

(2015-07-16) = * Fixed issue where multiple custom taxonomy terms were not correctly being saved

Download this release

Release Info

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

Code changes from version 1.7.0 to 1.7.1

Files changed (6) hide show
  1. docs/Changes.txt +3 -0
  2. docs/Postie.txt +1 -1
  3. docs/TODO.txt +1 -0
  4. postie-functions.php +3 -3
  5. postie.php +3 -3
  6. 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.0 (2015-07-07) =
31
  * Fixed attachment uploading bug when the type & extension weren't available.
32
  * Clarified "Filter newlines" setting description.
27
  Attachments are now processed in the order they were attached.
28
 
29
  == CHANGELOG ==
30
+ = 1.7.1 (2015-07-16) =
31
+ * Fixed issue where multiple custom taxonomy terms were not correctly being saved
32
+
33
  = 1.7.0 (2015-07-07) =
34
  * Fixed attachment uploading bug when the type & extension weren't available.
35
  * Clarified "Filter newlines" setting description.
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.2.2
9
- Stable tag: 1.7.0
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.2.2
9
+ Stable tag: 1.7.1
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
docs/TODO.txt CHANGED
@@ -1,4 +1,5 @@
1
  Preferred text type: just html, just plain, html fallback to plain
 
2
  Change successful post message to take post status into account (i.e. draft really isn't posted - possible link to publish draft?)
3
  Verify that WP is honoring the wp_set_current_user() call. I.e. if the user is not an "author" role can they publish?
4
  Test server port combination by opening a socket connection to see if any service responds. (via ajax call)
1
  Preferred text type: just html, just plain, html fallback to plain
2
+ Check to see if post already exists. Store hash in custom field.
3
  Change successful post message to take post status into account (i.e. draft really isn't posted - possible link to publish draft?)
4
  Verify that WP is honoring the wp_set_current_user() call. I.e. if the user is not an "author" role can they publish?
5
  Test server port combination by opening a socket connection to see if any service responds. (via ajax call)
postie-functions.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  /*
3
- $Id: postie-functions.php 1194283 2015-07-07 17:40:16Z WayneAllen $
4
  */
5
 
6
  //to turn on debug output add the following line to wp-config.php
@@ -2732,7 +2732,7 @@ function tag_Categories(&$subject, $defaultCategory, $category_match, $post_id)
2732
  $post_categories[] = $category;
2733
  } else {
2734
  DebugEcho("colon category: custom taxonomy $tax");
2735
- wp_set_object_terms($post_id, $category, $tax);
2736
  }
2737
  }
2738
  }
@@ -2753,7 +2753,7 @@ function tag_Categories(&$subject, $defaultCategory, $category_match, $post_id)
2753
  $post_categories[] = $category;
2754
  } else {
2755
  DebugEcho("tag_Categories: custom taxonomy $tax");
2756
- wp_set_object_terms($post_id, $category, $tax);
2757
  }
2758
  }
2759
  $i++;
1
  <?php
2
  /*
3
+ $Id: postie-functions.php 1200261 2015-07-16 15:39:01Z WayneAllen $
4
  */
5
 
6
  //to turn on debug output add the following line to wp-config.php
2732
  $post_categories[] = $category;
2733
  } else {
2734
  DebugEcho("colon category: custom taxonomy $tax");
2735
+ wp_set_object_terms($post_id, $category, $tax, true);
2736
  }
2737
  }
2738
  }
2753
  $post_categories[] = $category;
2754
  } else {
2755
  DebugEcho("tag_Categories: custom taxonomy $tax");
2756
+ wp_set_object_terms($post_id, $category, $tax, true);
2757
  }
2758
  }
2759
  $i++;
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.0
8
  Author: Wayne Allen
9
  Author URI: http://PostiePlugin.com/
10
  License: GPL2
@@ -27,11 +27,11 @@
27
  */
28
 
29
  /*
30
- $Id: postie.php 1194284 2015-07-07 17:42:31Z WayneAllen $
31
  */
32
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
33
 
34
- define('POSTIE_VERSION', '1.7.0');
35
  define("POSTIE_ROOT", dirname(__FILE__));
36
  define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
37
 
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.1
8
  Author: Wayne Allen
9
  Author URI: http://PostiePlugin.com/
10
  License: GPL2
27
  */
28
 
29
  /*
30
+ $Id: postie.php 1200261 2015-07-16 15:39:01Z WayneAllen $
31
  */
32
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
33
 
34
+ define('POSTIE_VERSION', '1.7.1');
35
  define("POSTIE_ROOT", dirname(__FILE__));
36
  define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
37
 
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.2.2
9
- Stable tag: 1.7.0
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -234,6 +234,9 @@ All script, style and body tags are stripped from html emails.
234
  Attachments are now processed in the order they were attached.
235
 
236
  == CHANGELOG ==
 
 
 
237
  = 1.7.0 (2015-07-07) =
238
  * Fixed attachment uploading bug when the type & extension weren't available.
239
  * Clarified "Filter newlines" setting description.
@@ -1192,4 +1195,4 @@ plugin. And the rest is history :)
1192
  * Cleaned up some pear stuff in install
1193
  *
1194
  = 0.1 - 2004-06 =
1195
- * First release
6
  Tags: e-mail, email, post-by-email
7
  Requires at least: 3.3.0
8
  Tested up to: 4.2.2
9
+ Stable tag: 1.7.1
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
234
  Attachments are now processed in the order they were attached.
235
 
236
  == CHANGELOG ==
237
+ = 1.7.1 (2015-07-16) =
238
+ * Fixed issue where multiple custom taxonomy terms were not correctly being saved
239
+
240
  = 1.7.0 (2015-07-07) =
241
  * Fixed attachment uploading bug when the type & extension weren't available.
242
  * Clarified "Filter newlines" setting description.
1195
  * Cleaned up some pear stuff in install
1196
  *
1197
  = 0.1 - 2004-06 =
1198
+ * First release