WordPress Zero Spam - Version 4.7.1

Version Description

  • Update to the WP Zero Spam API
Download this release

Release Info

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

Code changes from version 4.7.0 to 4.7.1

Files changed (3) hide show
  1. inc/helpers.php +1 -1
  2. readme.txt +5 -1
  3. wordpress-zero-spam.php +2 -2
inc/helpers.php CHANGED
@@ -965,7 +965,7 @@ if ( ! function_exists( 'wpzerospam_get_blacklist' ) ) {
965
  */
966
  if ( ! function_exists( 'wpzerospam_send_detection' ) ) {
967
  function wpzerospam_send_detection( $data ) {
968
- $api_url = 'https://benmarshall.me/wp-json/wpzerospamapi/v1/detection/';
969
 
970
  if (
971
  empty( $data['ip'] ) ||
965
  */
966
  if ( ! function_exists( 'wpzerospam_send_detection' ) ) {
967
  function wpzerospam_send_detection( $data ) {
968
+ $api_url = 'https://zerospam.org/wp-json/wpzerospamapi/v1/detection/';
969
 
970
  if (
971
  empty( $data['ip'] ) ||
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: https://benmarshall.me/donate/?utm_source=wordpress_zero_spam&utm_m
5
  Requires at least: 5.2
6
  Tested up to: 5.4.2
7
  Requires PHP: 7.1
8
- Stable tag: 4.7.0
9
  License: GNU GPLv3
10
  License URI: https://choosealicense.com/licenses/gpl-3.0/
11
 
@@ -117,6 +117,10 @@ Yes, that's what does the magic and keeps spam bots out.
117
 
118
  == Changelog ==
119
 
 
 
 
 
120
  = 4.7.0 =
121
 
122
  * Various performance enhancements
5
  Requires at least: 5.2
6
  Tested up to: 5.4.2
7
  Requires PHP: 7.1
8
+ Stable tag: 4.7.1
9
  License: GNU GPLv3
10
  License URI: https://choosealicense.com/licenses/gpl-3.0/
11
 
117
 
118
  == Changelog ==
119
 
120
+ = 4.7.1 =
121
+
122
+ * Update to the WP Zero Spam API
123
+
124
  = 4.7.0 =
125
 
126
  * Various performance enhancements
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.7.0
17
  * Requires at least: 5.2
18
  * Requires PHP: 7.2
19
  * Author: Ben Marshall
@@ -31,7 +31,7 @@ defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
31
  // Define plugin constants
32
  define( 'WORDPRESS_ZERO_SPAM', __FILE__ );
33
  define( 'WORDPRESS_ZERO_SPAM_DB_VERSION', '0.2' );
34
- define( 'WORDPRESS_ZERO_SPAM_VERSION', '4.7.0' );
35
 
36
  /**
37
  * Helpers
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.7.1
17
  * Requires at least: 5.2
18
  * Requires PHP: 7.2
19
  * Author: Ben Marshall
31
  // Define plugin constants
32
  define( 'WORDPRESS_ZERO_SPAM', __FILE__ );
33
  define( 'WORDPRESS_ZERO_SPAM_DB_VERSION', '0.2' );
34
+ define( 'WORDPRESS_ZERO_SPAM_VERSION', '4.7.1' );
35
 
36
  /**
37
  * Helpers