WordPress Zero Spam - Version 4.9.13

Version Description

  • Fix - PHP notices for comment options #209
Download this release

Release Info

Developer bmarshall511
Plugin Icon 128x128 WordPress Zero Spam
Version 4.9.13
Comparing to
See all releases

Code changes from version 4.9.12 to 4.9.13

inc/utilities.php CHANGED
@@ -148,7 +148,6 @@ if ( ! function_exists( 'wpzerospam_options' ) ) {
148
  }
149
 
150
  $options = apply_filters( 'wpzerospam_admin_options_defaults', $options );
151
-
152
  return $options;
153
  }
154
  }
148
  }
149
 
150
  $options = apply_filters( 'wpzerospam_admin_options_defaults', $options );
 
151
  return $options;
152
  }
153
  }
integrations/comments/comments.php CHANGED
@@ -78,7 +78,7 @@ if ( ! function_exists( 'wpzerospam_comments_admin_fields_default' ) ) {
78
  return $defaults;
79
  }
80
  }
81
- add_filter( 'wpzerospam_admin_option_defaults', 'wpzerospam_comments_admin_fields_default' );
82
 
83
  if ( ! function_exists( 'wpzerospam_comments_admin_submission_data_item' ) ) {
84
  function wpzerospam_comments_admin_submission_data_item( $key, $value ) {
78
  return $defaults;
79
  }
80
  }
81
+ add_filter( 'wpzerospam_admin_options_defaults', 'wpzerospam_comments_admin_fields_default' );
82
 
83
  if ( ! function_exists( 'wpzerospam_comments_admin_submission_data_item' ) ) {
84
  function wpzerospam_comments_admin_submission_data_item( $key, $value ) {
integrations/registrations/registrations.php CHANGED
@@ -62,7 +62,7 @@ if ( ! function_exists( 'wpzerospam_registrations_admin_fields_default' ) ) {
62
  return $defaults;
63
  }
64
  }
65
- add_filter( 'wpzerospam_admin_option_defaults', 'wpzerospam_registrations_admin_fields_default' );
66
 
67
  if ( ! function_exists( 'wpzerospam_registrations_admin_submission_data_item' ) ) {
68
  function wpzerospam_registrations_admin_submission_data_item( $key, $value ) {
62
  return $defaults;
63
  }
64
  }
65
+ add_filter( 'wpzerospam_admin_options_defaults', 'wpzerospam_registrations_admin_fields_default' );
66
 
67
  if ( ! function_exists( 'wpzerospam_registrations_admin_submission_data_item' ) ) {
68
  function wpzerospam_registrations_admin_submission_data_item( $key, $value ) {
readme.txt CHANGED
@@ -3,9 +3,9 @@ Contributors: bmarshall511, jaredatch, EusebiuOprinoiu
3
  Tags: comments, spam, antispam, anti-spam, comment spam, spambot, spammer, spam free, spam blocker, registration spam
4
  Donate link: https://benmarshall.me/donate/?utm_source=wordpress_zero_spam&utm_medium=wordpress_repo&utm_campaign=donate
5
  Requires at least: 5.2
6
- Tested up to: 5.4.2
7
  Requires PHP: 7.1
8
- Stable tag: 4.9.12
9
  License: GNU GPLv3
10
  License URI: https://choosealicense.com/licenses/gpl-3.0/
11
 
@@ -150,6 +150,10 @@ Yes. One of the many techniques WordPress Zero Spam employs requires JavaScript
150
 
151
  == Changelog ==
152
 
 
 
 
 
153
  = 4.9.12 =
154
 
155
  * Enhancement - Added support for the French & Italian languages. See [#207](https://github.com/bmarshall511/wordpress-zero-spam/issues/207).
3
  Tags: comments, spam, antispam, anti-spam, comment spam, spambot, spammer, spam free, spam blocker, registration spam
4
  Donate link: https://benmarshall.me/donate/?utm_source=wordpress_zero_spam&utm_medium=wordpress_repo&utm_campaign=donate
5
  Requires at least: 5.2
6
+ Tested up to: 5.5
7
  Requires PHP: 7.1
8
+ Stable tag: 4.9.13
9
  License: GNU GPLv3
10
  License URI: https://choosealicense.com/licenses/gpl-3.0/
11
 
150
 
151
  == Changelog ==
152
 
153
+ = 4.9.13 =
154
+
155
+ * Fix - PHP notices for comment options [#209](https://github.com/bmarshall511/wordpress-zero-spam/issues/209)
156
+
157
  = 4.9.12 =
158
 
159
  * Enhancement - Added support for the French & Italian languages. See [#207](https://github.com/bmarshall511/wordpress-zero-spam/issues/207).
wordpress-zero-spam.php CHANGED
@@ -13,7 +13,7 @@
13
  * Plugin Name: WordPress Zero Spam
14
  * Plugin URI: https://benmarshall.me/wordpress-zero-spam
15
  * Description: Tired of all the useless and bloated WordPress spam plugins? The WordPress Zero Spam plugin makes blocking spam a cinch. <strong>Just install, activate and say goodbye to spam.</strong> Based on work by <a href="http://davidwalsh.name/wordpress-comment-spam" target="_blank">David Walsh</a>.
16
- * Version: 4.9.12
17
  * Requires at least: 5.2
18
  * Requires PHP: 7.2
19
  * Author: Ben Marshall
@@ -32,7 +32,7 @@ defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
32
  // Define plugin constants
33
  define( 'WORDPRESS_ZERO_SPAM', __FILE__ );
34
  define( 'WORDPRESS_ZERO_SPAM_DB_VERSION', '0.5' );
35
- define( 'WORDPRESS_ZERO_SPAM_VERSION', '4.9.12' );
36
 
37
  /**
38
  * Utility helper functions.
13
  * Plugin Name: WordPress Zero Spam
14
  * Plugin URI: https://benmarshall.me/wordpress-zero-spam
15
  * Description: Tired of all the useless and bloated WordPress spam plugins? The WordPress Zero Spam plugin makes blocking spam a cinch. <strong>Just install, activate and say goodbye to spam.</strong> Based on work by <a href="http://davidwalsh.name/wordpress-comment-spam" target="_blank">David Walsh</a>.
16
+ * Version: 4.9.13
17
  * Requires at least: 5.2
18
  * Requires PHP: 7.2
19
  * Author: Ben Marshall
32
  // Define plugin constants
33
  define( 'WORDPRESS_ZERO_SPAM', __FILE__ );
34
  define( 'WORDPRESS_ZERO_SPAM_DB_VERSION', '0.5' );
35
+ define( 'WORDPRESS_ZERO_SPAM_VERSION', '4.9.13' );
36
 
37
  /**
38
  * Utility helper functions.