WordPress Zero Spam - Version 4.3.8

Version Description

  • Fix for Call to undefined function wpzerospam_tables() error
Download this release

Release Info

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

Code changes from version 4.3.7 to 4.3.8

Files changed (2) hide show
  1. readme.txt +5 -1
  2. wordpress-zero-spam.php +6 -6
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.3.7
9
  License: GNU GPLv3
10
  License URI: https://choosealicense.com/licenses/gpl-3.0/
11
 
@@ -92,6 +92,10 @@ Yes, that's what does the magic and keeps spam bots out.
92
 
93
  == Changelog ==
94
 
 
 
 
 
95
  = 4.3.7 =
96
 
97
  * Optimized scripts & when they get loaded (only when needed)
5
  Requires at least: 5.2
6
  Tested up to: 5.4.2
7
  Requires PHP: 7.1
8
+ Stable tag: 4.3.8
9
  License: GNU GPLv3
10
  License URI: https://choosealicense.com/licenses/gpl-3.0/
11
 
92
 
93
  == Changelog ==
94
 
95
+ = 4.3.8 =
96
+
97
+ * Fix for `Call to undefined function wpzerospam_tables()` error
98
+
99
  = 4.3.7 =
100
 
101
  * Optimized scripts & when they get loaded (only when needed)
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.3.7
17
  * Requires at least: 5.2
18
  * Requires PHP: 7.2
19
  * Author: Ben Marshall
@@ -32,6 +32,11 @@ defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
32
  define( 'WORDPRESS_ZERO_SPAM', __FILE__ );
33
  define( 'WORDPRESS_ZERO_SPAM_DB_VERSION', '0.1' );
34
 
 
 
 
 
 
35
  /**
36
  * Install plugin tables
37
  */
@@ -98,11 +103,6 @@ require plugin_dir_path( WORDPRESS_ZERO_SPAM ) . '/inc/updates.php';
98
  */
99
  require plugin_dir_path( WORDPRESS_ZERO_SPAM ) . '/inc/scripts.php';
100
 
101
- /**
102
- * Helpers
103
- */
104
- require plugin_dir_path( WORDPRESS_ZERO_SPAM ) . '/inc/helpers.php';
105
-
106
  /**
107
  * Admin interface
108
  */
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.3.8
17
  * Requires at least: 5.2
18
  * Requires PHP: 7.2
19
  * Author: Ben Marshall
32
  define( 'WORDPRESS_ZERO_SPAM', __FILE__ );
33
  define( 'WORDPRESS_ZERO_SPAM_DB_VERSION', '0.1' );
34
 
35
+ /**
36
+ * Helpers
37
+ */
38
+ require plugin_dir_path( WORDPRESS_ZERO_SPAM ) . '/inc/helpers.php';
39
+
40
  /**
41
  * Install plugin tables
42
  */
103
  */
104
  require plugin_dir_path( WORDPRESS_ZERO_SPAM ) . '/inc/scripts.php';
105
 
 
 
 
 
 
106
  /**
107
  * Admin interface
108
  */