Changeset 3493490
- Timestamp:
- 03/28/2026 05:33:16 PM (4 days ago)
- Location:
- fullworks-anti-spam
- Files:
-
- 36 edited
- 1 copied
-
tags/2.6.2 (copied) (copied from fullworks-anti-spam/trunk)
-
tags/2.6.2/admin/class-admin-pages.php (modified) (1 diff)
-
tags/2.6.2/admin/class-admin-settings.php (modified) (1 diff)
-
tags/2.6.2/admin/class-admin-table-allow-deny.php (modified) (1 diff)
-
tags/2.6.2/admin/class-admin.php (modified) (1 diff)
-
tags/2.6.2/admin/class-mark-spam.php (modified) (1 diff)
-
tags/2.6.2/changelog.txt (modified) (1 diff)
-
tags/2.6.2/class-anti-spam-api.php (modified) (1 diff)
-
tags/2.6.2/control/class-activator.php (modified) (1 diff)
-
tags/2.6.2/control/class-core.php (modified) (2 diffs)
-
tags/2.6.2/control/class-freemius-config.php (modified) (5 diffs)
-
tags/2.6.2/control/class-template-loader.php (modified) (1 diff)
-
tags/2.6.2/core/class-forms-hooks.php (modified) (1 diff)
-
tags/2.6.2/core/class-purge.php (modified) (1 diff)
-
tags/2.6.2/core/class-spam-checks.php (modified) (1 diff)
-
tags/2.6.2/fullworks-anti-spam.php (modified) (3 diffs)
-
tags/2.6.2/integrations/ws-form/class-ws-form-action-fullworks-anti-spam.php (modified) (1 diff)
-
tags/2.6.2/readme.txt (modified) (1 diff)
-
tags/2.6.2/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/admin/class-admin-pages.php (modified) (1 diff)
-
trunk/admin/class-admin-settings.php (modified) (1 diff)
-
trunk/admin/class-admin-table-allow-deny.php (modified) (1 diff)
-
trunk/admin/class-admin.php (modified) (1 diff)
-
trunk/admin/class-mark-spam.php (modified) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/class-anti-spam-api.php (modified) (1 diff)
-
trunk/control/class-activator.php (modified) (1 diff)
-
trunk/control/class-core.php (modified) (2 diffs)
-
trunk/control/class-freemius-config.php (modified) (5 diffs)
-
trunk/control/class-template-loader.php (modified) (1 diff)
-
trunk/core/class-forms-hooks.php (modified) (1 diff)
-
trunk/core/class-purge.php (modified) (1 diff)
-
trunk/core/class-spam-checks.php (modified) (1 diff)
-
trunk/fullworks-anti-spam.php (modified) (3 diffs)
-
trunk/integrations/ws-form/class-ws-form-action-fullworks-anti-spam.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fullworks-anti-spam/tags/2.6.2/admin/class-admin-pages.php
r3393933 r3493490 25 25 26 26 namespace Fullworks_Anti_Spam\Admin; 27 28 if ( ! defined( 'ABSPATH' ) ) exit; 27 29 28 30 use Fullworks_Anti_Spam\Core\Forms_Registrations; -
fullworks-anti-spam/tags/2.6.2/admin/class-admin-settings.php
r3396029 r3493490 32 32 namespace Fullworks_Anti_Spam\Admin; 33 33 34 if ( !defined( 'ABSPATH' ) ) { 35 exit; 36 } 34 37 use ActionScheduler_Store; 35 38 use Fullworks_Anti_Spam\Anti_Spam_Api; -
fullworks-anti-spam/tags/2.6.2/admin/class-admin-table-allow-deny.php
r3393933 r3493490 7 7 8 8 namespace Fullworks_Anti_Spam\Admin; 9 10 if ( ! defined( 'ABSPATH' ) ) exit; 9 11 10 12 use Fullworks_Anti_Spam\Admin\Admin_Tables; -
fullworks-anti-spam/tags/2.6.2/admin/class-admin.php
r3393933 r3493490 31 31 namespace Fullworks_Anti_Spam\Admin; 32 32 33 if ( !defined( 'ABSPATH' ) ) { 34 exit; 35 } 33 36 use Fullworks_Anti_Spam\Core\Utilities; 34 37 /** -
fullworks-anti-spam/tags/2.6.2/admin/class-mark-spam.php
r3158083 r3493490 32 32 namespace Fullworks_Anti_Spam\Admin; 33 33 34 if ( !defined( 'ABSPATH' ) ) { 35 exit; 36 } 34 37 use Fullworks_Anti_Spam\Core\Utilities; 35 38 use GFAPI; -
fullworks-anti-spam/tags/2.6.2/changelog.txt
r3396029 r3493490 1 1 == Changelog == 2 = 2.6.2 = 3 * Fix: WS Forms integration loading error when WS Form plugin not active 4 * Fix: Translation loading too early warning in WordPress 6.7+ 5 * Fix: Database error on activation for email log table 6 * Fix: Undefined array key warning for form alert settings 7 2 8 = 2.6.1 = 3 9 * Fix: Translation strings consolidated and improved for better internationalization -
fullworks-anti-spam/tags/2.6.2/class-anti-spam-api.php
r3393933 r3493490 2 2 3 3 namespace Fullworks_Anti_Spam; 4 5 if ( ! defined( 'ABSPATH' ) ) exit; 4 6 5 7 use Fullworks_Anti_Spam\Core\Email_Log; -
fullworks-anti-spam/tags/2.6.2/control/class-activator.php
r3393933 r3493490 74 74 // create an email message log table 75 75 $table_name = $wpdb->prefix . 'fwantispam_email_log'; 76 $sql = "CREATE TABLE {$table_name} (\n\t\t\tID int NOT NULL AUTO_INCREMENT,\n\t\t\tlogdate timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,\n\t\t\tformsystem varchar(256),\n\t\t\tformid varchar(256),\n\t\t\tsubject varchar(998),\n\t\t\treplyto varchar(998),\n\t\t\ttoemail varchar(998),\n\t\t\tspam_or_ham varchar(16),\n\t\t\theaders text,\n\t\t\tmessage \ttext,\n\t\t\tPRIMARY KEY (ID)\n\t\t) {$charset_collate};";76 $sql = "CREATE TABLE {$table_name} (\n\t\t\tID int NOT NULL AUTO_INCREMENT,\n\t\t\tlogdate timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,\n\t\t\tformsystem varchar(256),\n\t\t\tformid varchar(256),\n\t\t\tsubject varchar(998),\n\t\t\treplyto varchar(998),\n\t\t\ttoemail varchar(998),\n\t\t\tspam_or_ham varchar(16),\n\t\t\theaders text,\n\t\t\tmessage text,\n\t\t\tPRIMARY KEY (ID)\n\t\t) {$charset_collate};"; 77 77 dbDelta( $sql ); 78 78 } -
fullworks-anti-spam/tags/2.6.2/control/class-core.php
r3393933 r3493490 26 26 namespace Fullworks_Anti_Spam\Control; 27 27 28 if ( !defined( 'ABSPATH' ) ) { 29 exit; 30 } 28 31 use Fullworks_Anti_Spam\Admin\Admin; 29 32 use Fullworks_Anti_Spam\Admin\Admin_Email_View; … … 41 44 use Fullworks_Anti_Spam\Data\Log; 42 45 use Fullworks_Anti_Spam\FrontEnd\FrontEnd; 43 use Fullworks_Anti_Spam\Integrations\WS_Form\WS_Form_Action_Fullworks_Anti_Spam;44 46 /** 45 47 * Class Core -
fullworks-anti-spam/tags/2.6.2/control/class-freemius-config.php
r3393933 r3493490 26 26 namespace Fullworks_Anti_Spam\Control; 27 27 28 if ( !defined( 'ABSPATH' ) ) { 29 exit; 30 } 28 31 use FS_Admin_Menu_Manager; 29 32 use FS_Permission_Manager; … … 48 51 require_once FULLWORKS_ANTI_SPAM_PLUGIN_DIR . '/vendor/freemius/wordpress-sdk/start.php'; 49 52 $fwas_fs = fs_dynamic_init( array( 50 'id' => '5065',51 'slug' => 'fullworks-anti-spam',52 'premium_slug' => 'fullworks-anti-spam-pro',53 'type' => 'plugin',54 'public_key' => 'pk_742878bf26f007c206731eb58e390',55 'is_premium' => false,56 'premium_suffix' => 'Pro',57 'has_addons' => false,58 'has_paid_plans' => true,59 'navigation' => 'tabs',60 'trial' => array(53 'id' => '5065', 54 'slug' => 'fullworks-anti-spam', 55 'premium_slug' => 'fullworks-anti-spam-pro', 56 'type' => 'plugin', 57 'public_key' => 'pk_742878bf26f007c206731eb58e390', 58 'is_premium' => false, 59 'premium_suffix' => 'Pro', 60 'has_addons' => false, 61 'has_paid_plans' => true, 62 'navigation' => 'tabs', 63 'trial' => array( 61 64 'days' => 14, 62 65 'is_require_payment' => false, 63 66 ), 64 'has_affiliation' => 'selected',65 'menu' => array(67 'has_affiliation' => 'selected', 68 'menu' => array( 66 69 'slug' => 'fullworks-anti-spam-settings', 67 70 'contact' => false, … … 71 74 ), 72 75 ), 73 'anonymous_mode' => $this->is_anonymous(), 74 'is_live' => true, 76 'anonymous_mode' => $this->is_anonymous(), 77 'is_live' => true, 78 'is_org_compliant' => true, 75 79 ) ); 76 80 } … … 78 82 return FULLWORKS_ANTI_SPAM_PLUGIN_DIR . 'admin/images/brand/icon-256x256.svg'; 79 83 } ); 80 $fwas_fs->add_filter( 81 /** 82 * @type string $id 83 * @type bool $default 84 * @type string $icon -class 85 * @type bool $optional 86 * @type string $label 87 * @type string $tooltip 88 * @type string $desc 89 */ 90 'permission_list', 91 function ( $permissions ) use($fwas_fs) { 84 // Defer permission_list filter to after init to avoid early translation loading (WP 6.7+) 85 add_action( 'init', function () use($fwas_fs) { 86 $fwas_fs->add_filter( 'permission_list', function ( $permissions ) { 92 87 $permissions['fullworks'] = array( 93 88 'id' => 'fullworks', … … 101 96 ); 102 97 return $permissions; 103 } 104 );98 } ); 99 }, 1 ); 105 100 return $fwas_fs; 106 101 } -
fullworks-anti-spam/tags/2.6.2/control/class-template-loader.php
r3393933 r3493490 32 32 namespace Fullworks_Anti_Spam\Control; 33 33 34 if ( !defined( 'ABSPATH' ) ) { 35 exit; 36 } 34 37 use Gamajo_Template_Loader; 35 38 require_once FULLWORKS_ANTI_SPAM_PLUGIN_DIR . '/vendor/gamajo/template-loader/class-gamajo-template-loader.php'; -
fullworks-anti-spam/tags/2.6.2/core/class-forms-hooks.php
r3396029 r3493490 26 26 namespace Fullworks_Anti_Spam\Core; 27 27 28 if ( !defined( 'ABSPATH' ) ) { 29 exit; 30 } 28 31 use Cassandra\Exception\ValidationException; 29 32 use Fullworks_Anti_Spam\Anti_Spam_Api; -
fullworks-anti-spam/tags/2.6.2/core/class-purge.php
r3393933 r3493490 33 33 namespace Fullworks_Anti_Spam\Core; 34 34 35 if ( !defined( 'ABSPATH' ) ) { 36 exit; 37 } 35 38 use GFAPI; 36 39 class Purge { -
fullworks-anti-spam/tags/2.6.2/core/class-spam-checks.php
r3393933 r3493490 26 26 namespace Fullworks_Anti_Spam\Core; 27 27 28 if ( !defined( 'ABSPATH' ) ) { 29 exit; 30 } 28 31 use Error; 29 32 use Fullworks_Anti_Spam\Data\Log; -
fullworks-anti-spam/tags/2.6.2/fullworks-anti-spam.php
r3396029 r3493490 29 29 * Plugin URI: https://fullworksplugins.com/products/anti-spam/ 30 30 * Description: Stop spam on Contact Form 7, WPForms, Jetpack forms & comments. Actually FREE for business use (unlike Akismet). No CAPTCHA needed, works instantly. 31 * Version: 2.6. 131 * Version: 2.6.2 32 32 * Author: Fullworks 33 33 * Author URI: https://fullworksplugins.com/ … … 47 47 namespace Fullworks_Anti_Spam; 48 48 49 if ( ! defined( 'ABSPATH' ) ) exit; 50 49 51 use Fullworks_Anti_Spam\Control\Core; 50 52 use Fullworks_Anti_Spam\Control\Freemius_Config; … … 63 65 define( 'FULLWORKS_ANTI_SPAM_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); 64 66 65 define( 'FULLWORKS_ANTI_SPAM_PLUGIN_VERSION', '2.6. 1' );67 define( 'FULLWORKS_ANTI_SPAM_PLUGIN_VERSION', '2.6.2' ); 66 68 67 69 /** -
fullworks-anti-spam/tags/2.6.2/integrations/ws-form/class-ws-form-action-fullworks-anti-spam.php
r3396029 r3493490 2 2 3 3 namespace Fullworks_Anti_Spam\Integrations\WS_Form; 4 5 if ( ! defined( 'ABSPATH' ) ) exit; 4 6 5 7 use \WS_Form_Action; -
fullworks-anti-spam/tags/2.6.2/readme.txt
r3396029 r3493490 3 3 Tags: anti-spam, contact form 7, spam protection, wpforms, cf7 4 4 Tested up to: 6.9 5 Stable tag: 2.6. 15 Stable tag: 2.6.2 6 6 License: GPLv3 or later 7 7 Requires PHP: 7.4 -
fullworks-anti-spam/tags/2.6.2/vendor/composer/installed.php
r3396029 r3493490 2 2 'root' => array( 3 3 'name' => 'fullworks/fullworks-anti-spam', 4 'pretty_version' => '2.6. 1',5 'version' => '2.6. 1.0',6 'reference' => ' 8bdeaba0e620406b9bdfc270664b7fdc97b4207d',4 'pretty_version' => '2.6.2', 5 'version' => '2.6.2.0', 6 'reference' => '16f27f5feda667a772704bcaaf5fefeeba774753', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 52 52 ), 53 53 'fullworks/fullworks-anti-spam' => array( 54 'pretty_version' => '2.6. 1',55 'version' => '2.6. 1.0',56 'reference' => ' 8bdeaba0e620406b9bdfc270664b7fdc97b4207d',54 'pretty_version' => '2.6.2', 55 'version' => '2.6.2.0', 56 'reference' => '16f27f5feda667a772704bcaaf5fefeeba774753', 57 57 'type' => 'wordpress-plugin', 58 58 'install_path' => __DIR__ . '/../../', -
fullworks-anti-spam/trunk/admin/class-admin-pages.php
r3393933 r3493490 25 25 26 26 namespace Fullworks_Anti_Spam\Admin; 27 28 if ( ! defined( 'ABSPATH' ) ) exit; 27 29 28 30 use Fullworks_Anti_Spam\Core\Forms_Registrations; -
fullworks-anti-spam/trunk/admin/class-admin-settings.php
r3396029 r3493490 32 32 namespace Fullworks_Anti_Spam\Admin; 33 33 34 if ( !defined( 'ABSPATH' ) ) { 35 exit; 36 } 34 37 use ActionScheduler_Store; 35 38 use Fullworks_Anti_Spam\Anti_Spam_Api; -
fullworks-anti-spam/trunk/admin/class-admin-table-allow-deny.php
r3393933 r3493490 7 7 8 8 namespace Fullworks_Anti_Spam\Admin; 9 10 if ( ! defined( 'ABSPATH' ) ) exit; 9 11 10 12 use Fullworks_Anti_Spam\Admin\Admin_Tables; -
fullworks-anti-spam/trunk/admin/class-admin.php
r3393933 r3493490 31 31 namespace Fullworks_Anti_Spam\Admin; 32 32 33 if ( !defined( 'ABSPATH' ) ) { 34 exit; 35 } 33 36 use Fullworks_Anti_Spam\Core\Utilities; 34 37 /** -
fullworks-anti-spam/trunk/admin/class-mark-spam.php
r3158083 r3493490 32 32 namespace Fullworks_Anti_Spam\Admin; 33 33 34 if ( !defined( 'ABSPATH' ) ) { 35 exit; 36 } 34 37 use Fullworks_Anti_Spam\Core\Utilities; 35 38 use GFAPI; -
fullworks-anti-spam/trunk/changelog.txt
r3396029 r3493490 1 1 == Changelog == 2 = 2.6.2 = 3 * Fix: WS Forms integration loading error when WS Form plugin not active 4 * Fix: Translation loading too early warning in WordPress 6.7+ 5 * Fix: Database error on activation for email log table 6 * Fix: Undefined array key warning for form alert settings 7 2 8 = 2.6.1 = 3 9 * Fix: Translation strings consolidated and improved for better internationalization -
fullworks-anti-spam/trunk/class-anti-spam-api.php
r3393933 r3493490 2 2 3 3 namespace Fullworks_Anti_Spam; 4 5 if ( ! defined( 'ABSPATH' ) ) exit; 4 6 5 7 use Fullworks_Anti_Spam\Core\Email_Log; -
fullworks-anti-spam/trunk/control/class-activator.php
r3393933 r3493490 74 74 // create an email message log table 75 75 $table_name = $wpdb->prefix . 'fwantispam_email_log'; 76 $sql = "CREATE TABLE {$table_name} (\n\t\t\tID int NOT NULL AUTO_INCREMENT,\n\t\t\tlogdate timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,\n\t\t\tformsystem varchar(256),\n\t\t\tformid varchar(256),\n\t\t\tsubject varchar(998),\n\t\t\treplyto varchar(998),\n\t\t\ttoemail varchar(998),\n\t\t\tspam_or_ham varchar(16),\n\t\t\theaders text,\n\t\t\tmessage \ttext,\n\t\t\tPRIMARY KEY (ID)\n\t\t) {$charset_collate};";76 $sql = "CREATE TABLE {$table_name} (\n\t\t\tID int NOT NULL AUTO_INCREMENT,\n\t\t\tlogdate timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,\n\t\t\tformsystem varchar(256),\n\t\t\tformid varchar(256),\n\t\t\tsubject varchar(998),\n\t\t\treplyto varchar(998),\n\t\t\ttoemail varchar(998),\n\t\t\tspam_or_ham varchar(16),\n\t\t\theaders text,\n\t\t\tmessage text,\n\t\t\tPRIMARY KEY (ID)\n\t\t) {$charset_collate};"; 77 77 dbDelta( $sql ); 78 78 } -
fullworks-anti-spam/trunk/control/class-core.php
r3393933 r3493490 26 26 namespace Fullworks_Anti_Spam\Control; 27 27 28 if ( !defined( 'ABSPATH' ) ) { 29 exit; 30 } 28 31 use Fullworks_Anti_Spam\Admin\Admin; 29 32 use Fullworks_Anti_Spam\Admin\Admin_Email_View; … … 41 44 use Fullworks_Anti_Spam\Data\Log; 42 45 use Fullworks_Anti_Spam\FrontEnd\FrontEnd; 43 use Fullworks_Anti_Spam\Integrations\WS_Form\WS_Form_Action_Fullworks_Anti_Spam;44 46 /** 45 47 * Class Core -
fullworks-anti-spam/trunk/control/class-freemius-config.php
r3393933 r3493490 26 26 namespace Fullworks_Anti_Spam\Control; 27 27 28 if ( !defined( 'ABSPATH' ) ) { 29 exit; 30 } 28 31 use FS_Admin_Menu_Manager; 29 32 use FS_Permission_Manager; … … 48 51 require_once FULLWORKS_ANTI_SPAM_PLUGIN_DIR . '/vendor/freemius/wordpress-sdk/start.php'; 49 52 $fwas_fs = fs_dynamic_init( array( 50 'id' => '5065',51 'slug' => 'fullworks-anti-spam',52 'premium_slug' => 'fullworks-anti-spam-pro',53 'type' => 'plugin',54 'public_key' => 'pk_742878bf26f007c206731eb58e390',55 'is_premium' => false,56 'premium_suffix' => 'Pro',57 'has_addons' => false,58 'has_paid_plans' => true,59 'navigation' => 'tabs',60 'trial' => array(53 'id' => '5065', 54 'slug' => 'fullworks-anti-spam', 55 'premium_slug' => 'fullworks-anti-spam-pro', 56 'type' => 'plugin', 57 'public_key' => 'pk_742878bf26f007c206731eb58e390', 58 'is_premium' => false, 59 'premium_suffix' => 'Pro', 60 'has_addons' => false, 61 'has_paid_plans' => true, 62 'navigation' => 'tabs', 63 'trial' => array( 61 64 'days' => 14, 62 65 'is_require_payment' => false, 63 66 ), 64 'has_affiliation' => 'selected',65 'menu' => array(67 'has_affiliation' => 'selected', 68 'menu' => array( 66 69 'slug' => 'fullworks-anti-spam-settings', 67 70 'contact' => false, … … 71 74 ), 72 75 ), 73 'anonymous_mode' => $this->is_anonymous(), 74 'is_live' => true, 76 'anonymous_mode' => $this->is_anonymous(), 77 'is_live' => true, 78 'is_org_compliant' => true, 75 79 ) ); 76 80 } … … 78 82 return FULLWORKS_ANTI_SPAM_PLUGIN_DIR . 'admin/images/brand/icon-256x256.svg'; 79 83 } ); 80 $fwas_fs->add_filter( 81 /** 82 * @type string $id 83 * @type bool $default 84 * @type string $icon -class 85 * @type bool $optional 86 * @type string $label 87 * @type string $tooltip 88 * @type string $desc 89 */ 90 'permission_list', 91 function ( $permissions ) use($fwas_fs) { 84 // Defer permission_list filter to after init to avoid early translation loading (WP 6.7+) 85 add_action( 'init', function () use($fwas_fs) { 86 $fwas_fs->add_filter( 'permission_list', function ( $permissions ) { 92 87 $permissions['fullworks'] = array( 93 88 'id' => 'fullworks', … … 101 96 ); 102 97 return $permissions; 103 } 104 );98 } ); 99 }, 1 ); 105 100 return $fwas_fs; 106 101 } -
fullworks-anti-spam/trunk/control/class-template-loader.php
r3393933 r3493490 32 32 namespace Fullworks_Anti_Spam\Control; 33 33 34 if ( !defined( 'ABSPATH' ) ) { 35 exit; 36 } 34 37 use Gamajo_Template_Loader; 35 38 require_once FULLWORKS_ANTI_SPAM_PLUGIN_DIR . '/vendor/gamajo/template-loader/class-gamajo-template-loader.php'; -
fullworks-anti-spam/trunk/core/class-forms-hooks.php
r3396029 r3493490 26 26 namespace Fullworks_Anti_Spam\Core; 27 27 28 if ( !defined( 'ABSPATH' ) ) { 29 exit; 30 } 28 31 use Cassandra\Exception\ValidationException; 29 32 use Fullworks_Anti_Spam\Anti_Spam_Api; -
fullworks-anti-spam/trunk/core/class-purge.php
r3393933 r3493490 33 33 namespace Fullworks_Anti_Spam\Core; 34 34 35 if ( !defined( 'ABSPATH' ) ) { 36 exit; 37 } 35 38 use GFAPI; 36 39 class Purge { -
fullworks-anti-spam/trunk/core/class-spam-checks.php
r3393933 r3493490 26 26 namespace Fullworks_Anti_Spam\Core; 27 27 28 if ( !defined( 'ABSPATH' ) ) { 29 exit; 30 } 28 31 use Error; 29 32 use Fullworks_Anti_Spam\Data\Log; -
fullworks-anti-spam/trunk/fullworks-anti-spam.php
r3396029 r3493490 29 29 * Plugin URI: https://fullworksplugins.com/products/anti-spam/ 30 30 * Description: Stop spam on Contact Form 7, WPForms, Jetpack forms & comments. Actually FREE for business use (unlike Akismet). No CAPTCHA needed, works instantly. 31 * Version: 2.6. 131 * Version: 2.6.2 32 32 * Author: Fullworks 33 33 * Author URI: https://fullworksplugins.com/ … … 47 47 namespace Fullworks_Anti_Spam; 48 48 49 if ( ! defined( 'ABSPATH' ) ) exit; 50 49 51 use Fullworks_Anti_Spam\Control\Core; 50 52 use Fullworks_Anti_Spam\Control\Freemius_Config; … … 63 65 define( 'FULLWORKS_ANTI_SPAM_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); 64 66 65 define( 'FULLWORKS_ANTI_SPAM_PLUGIN_VERSION', '2.6. 1' );67 define( 'FULLWORKS_ANTI_SPAM_PLUGIN_VERSION', '2.6.2' ); 66 68 67 69 /** -
fullworks-anti-spam/trunk/integrations/ws-form/class-ws-form-action-fullworks-anti-spam.php
r3396029 r3493490 2 2 3 3 namespace Fullworks_Anti_Spam\Integrations\WS_Form; 4 5 if ( ! defined( 'ABSPATH' ) ) exit; 4 6 5 7 use \WS_Form_Action; -
fullworks-anti-spam/trunk/readme.txt
r3396029 r3493490 3 3 Tags: anti-spam, contact form 7, spam protection, wpforms, cf7 4 4 Tested up to: 6.9 5 Stable tag: 2.6. 15 Stable tag: 2.6.2 6 6 License: GPLv3 or later 7 7 Requires PHP: 7.4 -
fullworks-anti-spam/trunk/vendor/composer/installed.php
r3396029 r3493490 2 2 'root' => array( 3 3 'name' => 'fullworks/fullworks-anti-spam', 4 'pretty_version' => '2.6. 1',5 'version' => '2.6. 1.0',6 'reference' => ' 8bdeaba0e620406b9bdfc270664b7fdc97b4207d',4 'pretty_version' => '2.6.2', 5 'version' => '2.6.2.0', 6 'reference' => '16f27f5feda667a772704bcaaf5fefeeba774753', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 52 52 ), 53 53 'fullworks/fullworks-anti-spam' => array( 54 'pretty_version' => '2.6. 1',55 'version' => '2.6. 1.0',56 'reference' => ' 8bdeaba0e620406b9bdfc270664b7fdc97b4207d',54 'pretty_version' => '2.6.2', 55 'version' => '2.6.2.0', 56 'reference' => '16f27f5feda667a772704bcaaf5fefeeba774753', 57 57 'type' => 'wordpress-plugin', 58 58 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.