Skip to content

Commit bdaba12

Browse files
committed
Merge branch 'trunk' into stable
2 parents c438ead + ec0ef28 commit bdaba12

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

includes/class-db.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function __construct() {
4040
* Installs & updates the DB tables
4141
*/
4242
public function update() {
43-
if ( self::DB_VERSION !== get_site_option( 'zerospam_db_version' ) ) {
43+
if ( self::DB_VERSION !== get_option( 'zerospam_db_version' ) ) {
4444
global $wpdb;
4545

4646
$charset_collate = $wpdb->get_charset_collate();
@@ -77,7 +77,7 @@ public function update() {
7777
require_once ABSPATH . 'wp-admin/includes/upgrade.php';
7878
dbDelta( $sql );
7979

80-
update_site_option( 'zerospam_db_version', self::DB_VERSION );
80+
update_option( 'zerospam_db_version', self::DB_VERSION );
8181
}
8282
}
8383

readme.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: bmarshall511
33
Tags: protection, firewall, security, spam, spam blocker
44
Donate link: https://www.zerospam.org/subscribe/
55
Requires at least: 5.2
6-
Tested up to: 6.5
6+
Tested up to: 6.5.2
77
Requires PHP: 7.4
88
Stable tag: 5.5.5
99
License: GNU GPLv3
@@ -107,6 +107,10 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro
107107

108108
== Changelog ==
109109

110+
= v5.5.6 =
111+
112+
* fix(missing tables): fix for missing tables error on multisites, #377
113+
110114
= v5.5.5 =
111115

112116
* fix(jquery): fix for jquery not found error when jquery is loaded with defer

wordpress-zero-spam.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Plugin Name: Zero Spam for WordPress
1414
* Plugin URI: https://www.highfivery.com/projects/zero-spam/
1515
* Description: Tired of all the ineffective WordPress anti-spam & security plugins? Zero Spam for WordPress makes blocking spam &amp; malicious activity a cinch. <strong>Just activate, configure, and say goodbye to spam.</strong>
16-
* Version: 5.5.5
16+
* Version: 5.5.6
1717
* Requires at least: 5.2
1818
* Requires PHP: 7.3
1919
* Author: Highfivery LLC
@@ -31,7 +31,7 @@
3131
define( 'ZEROSPAM', __FILE__ );
3232
define( 'ZEROSPAM_PATH', plugin_dir_path( ZEROSPAM ) );
3333
define( 'ZEROSPAM_PLUGIN_BASE', plugin_basename( ZEROSPAM ) );
34-
define( 'ZEROSPAM_VERSION', '5.5.5' );
34+
define( 'ZEROSPAM_VERSION', '5.5.6' );
3535

3636
if ( defined( 'ZEROSPAM_DEVELOPMENT_URL' ) ) {
3737
define( 'ZEROSPAM_URL', ZEROSPAM_DEVELOPMENT_URL );

0 commit comments

Comments
 (0)