Postie - Version 1.7.27

Version Description

(2015-12-28) = * Fix category match settings not saving

Download this release

Release Info

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

Code changes from version 1.7.26 to 1.7.27

config_form.php CHANGED
@@ -194,7 +194,10 @@
194
  </div>
195
  </div>
196
 
197
- <?php $iconDir = esc_url(plugins_url() . '/postie/icons'); ?>
 
 
 
198
  <script type="text/javascript">
199
  jQuery(document).ready(function () {
200
  jQuery('.simpleTabs-content').hide();
194
  </div>
195
  </div>
196
 
197
+ <?php
198
+ $iconDir = esc_url(plugins_url() . '/postie/icons');
199
+ //print_r($config);
200
+ ?>
201
  <script type="text/javascript">
202
  jQuery(document).ready(function () {
203
  jQuery('.simpleTabs-content').hide();
config_form_message.php CHANGED
@@ -18,33 +18,13 @@
18
  wp_dropdown_categories($args);
19
  ?>
20
  </tr>
21
- <?php echo BuildBooleanSelect(__("Match short category", 'postie'), "postie-settings[category_match]", $category_match, __("Try to match categories using 'starts with logic' otherwise only do exact matches.<br />Note that custom taxonomies will not be found if this setting is 'No'", 'postie')); ?>
 
22
 
23
- <tr>
24
- <th scope="row">
25
- <?php _e('Category matching', 'postie') ?><br />
26
- </th>
27
- <td>
28
- <table class="checkbox-table">
29
- <tr>
30
- <td>
31
- <input type='checkbox' value='1' name='postie-settings[category_colon]' <?php echo ($category_colon ? ' checked' :'') ?>/>Use colon to match category
32
- </td>
33
- </tr>
34
- <tr>
35
- <td>
36
- <input type='checkbox' value='1' name='postie-settings[category_dash]' <?php echo ($category_dash ? ' checked' :'') ?>/>Use dash to match category
37
- </td>
38
- </tr>
39
- <tr>
40
- <td>
41
- <input type='checkbox' value='1' name='postie-settings[category_bracket]' <?php echo ($category_bracket ? ' checked' :'') ?>/>Use square bracket to match category
42
- </td>
43
- </tr>
44
- </table>
45
- <p class='description'><?php _e('See the following article for more information <a href="http://postieplugin.com/faq/override-post-categories/" target="_blank">http://postieplugin.com/faq/override-post-categories/</a>', 'postie') ?></p>
46
- </td>
47
- </tr>
48
 
49
  <tr valign="top">
50
  <th scope="row">
18
  wp_dropdown_categories($args);
19
  ?>
20
  </tr>
21
+ <?php
22
+ echo BuildBooleanSelect(__("Match short category", 'postie'), "postie-settings[category_match]", $category_match, __("Try to match categories using 'starts with logic' otherwise only do exact matches.<br />Note that custom taxonomies will not be found if this setting is 'No'", 'postie'));
23
 
24
+ echo BuildBooleanSelect(__("Use colon to match category", 'postie'), "postie-settings[category_colon]", $category_colon);
25
+ echo BuildBooleanSelect(__("Use dash to match category", 'postie'), "postie-settings[category_dash]", $category_dash);
26
+ echo BuildBooleanSelect(__("Use square bracket to match category", 'postie'), "postie-settings[category_bracket]", $category_bracket, __('See the following article for more information <a href="http://postieplugin.com/faq/override-post-categories/" target="_blank">http://postieplugin.com/faq/override-post-categories/</a>', 'postie'));
27
+ ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
  <tr valign="top">
30
  <th scope="row">
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.26 (2015-12-28) =
31
  * Detect oEmbedable links and don't linkify
32
 
27
  Attachments are now processed in the order they were attached.
28
 
29
  == CHANGELOG ==
30
+ = 1.7.27 (2015-12-28) =
31
+ * Fix category match settings not saving
32
+
33
  = 1.7.26 (2015-12-28) =
34
  * Detect oEmbedable links and don't linkify
35
 
docs/Postie.txt CHANGED
@@ -5,8 +5,8 @@ Author URI: http://allens-home.com/
5
  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.4
9
- Stable tag: 1.7.26
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
5
  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.4.1
9
+ Stable tag: 1.7.27
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
docs/TODO.txt CHANGED
@@ -27,6 +27,7 @@ use wordpress plugin template
27
  starter-plugin https://github.com/mattyza/starter-plugin
28
  WordPress-Plugin-Template https://github.com/hlashbrooke/WordPress-Plugin-Template
29
  configurable message for "post confirmation" - variable substitution
 
30
 
31
  Hooks
32
  add hooks for post meta data change
27
  starter-plugin https://github.com/mattyza/starter-plugin
28
  WordPress-Plugin-Template https://github.com/hlashbrooke/WordPress-Plugin-Template
29
  configurable message for "post confirmation" - variable substitution
30
+ allow other roles access to manual check like "Roles That Can Post"
31
 
32
  Hooks
33
  add hooks for post meta data change
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.26
8
  Author: Wayne Allen
9
  Author URI: http://PostiePlugin.com/
10
  License: GPL2
@@ -28,12 +28,12 @@
28
  */
29
 
30
  /*
31
- $Id: postie.php 1317583 2015-12-28 22:03:06Z WayneAllen $
32
  */
33
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib_autolink.php");
34
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
35
 
36
- define('POSTIE_VERSION', '1.7.26');
37
  define("POSTIE_ROOT", dirname(__FILE__));
38
  define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
39
 
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.27
8
  Author: Wayne Allen
9
  Author URI: http://PostiePlugin.com/
10
  License: GPL2
28
  */
29
 
30
  /*
31
+ $Id: postie.php 1323574 2016-01-07 22:46:17Z WayneAllen $
32
  */
33
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "lib_autolink.php");
34
  require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "postie-functions.php");
35
 
36
+ define('POSTIE_VERSION', '1.7.27');
37
  define("POSTIE_ROOT", dirname(__FILE__));
38
  define("POSTIE_URL", WP_PLUGIN_URL . '/' . basename(dirname(__FILE__)));
39
 
readme.txt CHANGED
@@ -5,8 +5,8 @@ Author URI: http://allens-home.com/
5
  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.4
9
- Stable tag: 1.7.26
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.26 (2015-12-28) =
239
  * Detect oEmbedable links and don't linkify
240
 
5
  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.4.1
9
+ Stable tag: 1.7.27
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.27 (2015-12-28) =
239
+ * Fix category match settings not saving
240
+
241
  = 1.7.26 (2015-12-28) =
242
  * Detect oEmbedable links and don't linkify
243