Plugin Directory

Changeset 3493490


Ignore:
Timestamp:
03/28/2026 05:33:16 PM (4 days ago)
Author:
fullworks
Message:

Update to version 2.6.2 from GitHub

Location:
fullworks-anti-spam
Files:
36 edited
1 copied

Legend:

Unmodified
Added
Removed
  • fullworks-anti-spam/tags/2.6.2/admin/class-admin-pages.php

    r3393933 r3493490  
    2525
    2626namespace Fullworks_Anti_Spam\Admin;
     27
     28if ( ! defined( 'ABSPATH' ) ) exit;
    2729
    2830use Fullworks_Anti_Spam\Core\Forms_Registrations;
  • fullworks-anti-spam/tags/2.6.2/admin/class-admin-settings.php

    r3396029 r3493490  
    3232namespace Fullworks_Anti_Spam\Admin;
    3333
     34if ( !defined( 'ABSPATH' ) ) {
     35    exit;
     36}
    3437use ActionScheduler_Store;
    3538use Fullworks_Anti_Spam\Anti_Spam_Api;
  • fullworks-anti-spam/tags/2.6.2/admin/class-admin-table-allow-deny.php

    r3393933 r3493490  
    77
    88namespace Fullworks_Anti_Spam\Admin;
     9
     10if ( ! defined( 'ABSPATH' ) ) exit;
    911
    1012use Fullworks_Anti_Spam\Admin\Admin_Tables;
  • fullworks-anti-spam/tags/2.6.2/admin/class-admin.php

    r3393933 r3493490  
    3131namespace Fullworks_Anti_Spam\Admin;
    3232
     33if ( !defined( 'ABSPATH' ) ) {
     34    exit;
     35}
    3336use Fullworks_Anti_Spam\Core\Utilities;
    3437/**
  • fullworks-anti-spam/tags/2.6.2/admin/class-mark-spam.php

    r3158083 r3493490  
    3232namespace Fullworks_Anti_Spam\Admin;
    3333
     34if ( !defined( 'ABSPATH' ) ) {
     35    exit;
     36}
    3437use Fullworks_Anti_Spam\Core\Utilities;
    3538use GFAPI;
  • fullworks-anti-spam/tags/2.6.2/changelog.txt

    r3396029 r3493490  
    11== 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
    28= 2.6.1 =
    39* Fix: Translation strings consolidated and improved for better internationalization
  • fullworks-anti-spam/tags/2.6.2/class-anti-spam-api.php

    r3393933 r3493490  
    22
    33namespace Fullworks_Anti_Spam;
     4
     5if ( ! defined( 'ABSPATH' ) ) exit;
    46
    57use Fullworks_Anti_Spam\Core\Email_Log;
  • fullworks-anti-spam/tags/2.6.2/control/class-activator.php

    r3393933 r3493490  
    7474        // create an email message log table
    7575        $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};";
    7777        dbDelta( $sql );
    7878    }
  • fullworks-anti-spam/tags/2.6.2/control/class-core.php

    r3393933 r3493490  
    2626namespace Fullworks_Anti_Spam\Control;
    2727
     28if ( !defined( 'ABSPATH' ) ) {
     29    exit;
     30}
    2831use Fullworks_Anti_Spam\Admin\Admin;
    2932use Fullworks_Anti_Spam\Admin\Admin_Email_View;
     
    4144use Fullworks_Anti_Spam\Data\Log;
    4245use Fullworks_Anti_Spam\FrontEnd\FrontEnd;
    43 use Fullworks_Anti_Spam\Integrations\WS_Form\WS_Form_Action_Fullworks_Anti_Spam;
    4446/**
    4547 * Class Core
  • fullworks-anti-spam/tags/2.6.2/control/class-freemius-config.php

    r3393933 r3493490  
    2626namespace Fullworks_Anti_Spam\Control;
    2727
     28if ( !defined( 'ABSPATH' ) ) {
     29    exit;
     30}
    2831use FS_Admin_Menu_Manager;
    2932use FS_Permission_Manager;
     
    4851            require_once FULLWORKS_ANTI_SPAM_PLUGIN_DIR . '/vendor/freemius/wordpress-sdk/start.php';
    4952            $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(
    6164                    'days'               => 14,
    6265                    'is_require_payment' => false,
    6366                ),
    64                 'has_affiliation' => 'selected',
    65                 'menu'            => array(
     67                'has_affiliation'  => 'selected',
     68                'menu'             => array(
    6669                    'slug'    => 'fullworks-anti-spam-settings',
    6770                    'contact' => false,
     
    7174                    ),
    7275                ),
    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,
    7579            ) );
    7680        }
     
    7882            return FULLWORKS_ANTI_SPAM_PLUGIN_DIR . 'admin/images/brand/icon-256x256.svg';
    7983        } );
    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 ) {
    9287                $permissions['fullworks'] = array(
    9388                    'id'         => 'fullworks',
     
    10196                );
    10297                return $permissions;
    103             }
    104         );
     98            } );
     99        }, 1 );
    105100        return $fwas_fs;
    106101    }
  • fullworks-anti-spam/tags/2.6.2/control/class-template-loader.php

    r3393933 r3493490  
    3232namespace Fullworks_Anti_Spam\Control;
    3333
     34if ( !defined( 'ABSPATH' ) ) {
     35    exit;
     36}
    3437use Gamajo_Template_Loader;
    3538require_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  
    2626namespace Fullworks_Anti_Spam\Core;
    2727
     28if ( !defined( 'ABSPATH' ) ) {
     29    exit;
     30}
    2831use Cassandra\Exception\ValidationException;
    2932use Fullworks_Anti_Spam\Anti_Spam_Api;
  • fullworks-anti-spam/tags/2.6.2/core/class-purge.php

    r3393933 r3493490  
    3333namespace Fullworks_Anti_Spam\Core;
    3434
     35if ( !defined( 'ABSPATH' ) ) {
     36    exit;
     37}
    3538use GFAPI;
    3639class Purge {
  • fullworks-anti-spam/tags/2.6.2/core/class-spam-checks.php

    r3393933 r3493490  
    2626namespace Fullworks_Anti_Spam\Core;
    2727
     28if ( !defined( 'ABSPATH' ) ) {
     29    exit;
     30}
    2831use Error;
    2932use Fullworks_Anti_Spam\Data\Log;
  • fullworks-anti-spam/tags/2.6.2/fullworks-anti-spam.php

    r3396029 r3493490  
    2929 * Plugin URI:        https://fullworksplugins.com/products/anti-spam/
    3030 * 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.1
     31 * Version:           2.6.2
    3232 * Author:            Fullworks
    3333 * Author URI:        https://fullworksplugins.com/
     
    4747namespace Fullworks_Anti_Spam;
    4848
     49if ( ! defined( 'ABSPATH' ) ) exit;
     50
    4951use Fullworks_Anti_Spam\Control\Core;
    5052use Fullworks_Anti_Spam\Control\Freemius_Config;
     
    6365define( 'FULLWORKS_ANTI_SPAM_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    6466
    65 define( 'FULLWORKS_ANTI_SPAM_PLUGIN_VERSION', '2.6.1' );
     67define( 'FULLWORKS_ANTI_SPAM_PLUGIN_VERSION', '2.6.2' );
    6668
    6769/**
  • fullworks-anti-spam/tags/2.6.2/integrations/ws-form/class-ws-form-action-fullworks-anti-spam.php

    r3396029 r3493490  
    22
    33namespace Fullworks_Anti_Spam\Integrations\WS_Form;
     4
     5if ( ! defined( 'ABSPATH' ) ) exit;
    46
    57use \WS_Form_Action;
  • fullworks-anti-spam/tags/2.6.2/readme.txt

    r3396029 r3493490  
    33Tags: anti-spam, contact form 7, spam protection, wpforms, cf7
    44Tested up to: 6.9
    5 Stable tag: 2.6.1
     5Stable tag: 2.6.2
    66License: GPLv3 or later
    77Requires PHP: 7.4
  • fullworks-anti-spam/tags/2.6.2/vendor/composer/installed.php

    r3396029 r3493490  
    22    'root' => array(
    33        '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',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    5252        ),
    5353        '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',
    5757            'type' => 'wordpress-plugin',
    5858            'install_path' => __DIR__ . '/../../',
  • fullworks-anti-spam/trunk/admin/class-admin-pages.php

    r3393933 r3493490  
    2525
    2626namespace Fullworks_Anti_Spam\Admin;
     27
     28if ( ! defined( 'ABSPATH' ) ) exit;
    2729
    2830use Fullworks_Anti_Spam\Core\Forms_Registrations;
  • fullworks-anti-spam/trunk/admin/class-admin-settings.php

    r3396029 r3493490  
    3232namespace Fullworks_Anti_Spam\Admin;
    3333
     34if ( !defined( 'ABSPATH' ) ) {
     35    exit;
     36}
    3437use ActionScheduler_Store;
    3538use Fullworks_Anti_Spam\Anti_Spam_Api;
  • fullworks-anti-spam/trunk/admin/class-admin-table-allow-deny.php

    r3393933 r3493490  
    77
    88namespace Fullworks_Anti_Spam\Admin;
     9
     10if ( ! defined( 'ABSPATH' ) ) exit;
    911
    1012use Fullworks_Anti_Spam\Admin\Admin_Tables;
  • fullworks-anti-spam/trunk/admin/class-admin.php

    r3393933 r3493490  
    3131namespace Fullworks_Anti_Spam\Admin;
    3232
     33if ( !defined( 'ABSPATH' ) ) {
     34    exit;
     35}
    3336use Fullworks_Anti_Spam\Core\Utilities;
    3437/**
  • fullworks-anti-spam/trunk/admin/class-mark-spam.php

    r3158083 r3493490  
    3232namespace Fullworks_Anti_Spam\Admin;
    3333
     34if ( !defined( 'ABSPATH' ) ) {
     35    exit;
     36}
    3437use Fullworks_Anti_Spam\Core\Utilities;
    3538use GFAPI;
  • fullworks-anti-spam/trunk/changelog.txt

    r3396029 r3493490  
    11== 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
    28= 2.6.1 =
    39* Fix: Translation strings consolidated and improved for better internationalization
  • fullworks-anti-spam/trunk/class-anti-spam-api.php

    r3393933 r3493490  
    22
    33namespace Fullworks_Anti_Spam;
     4
     5if ( ! defined( 'ABSPATH' ) ) exit;
    46
    57use Fullworks_Anti_Spam\Core\Email_Log;
  • fullworks-anti-spam/trunk/control/class-activator.php

    r3393933 r3493490  
    7474        // create an email message log table
    7575        $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};";
    7777        dbDelta( $sql );
    7878    }
  • fullworks-anti-spam/trunk/control/class-core.php

    r3393933 r3493490  
    2626namespace Fullworks_Anti_Spam\Control;
    2727
     28if ( !defined( 'ABSPATH' ) ) {
     29    exit;
     30}
    2831use Fullworks_Anti_Spam\Admin\Admin;
    2932use Fullworks_Anti_Spam\Admin\Admin_Email_View;
     
    4144use Fullworks_Anti_Spam\Data\Log;
    4245use Fullworks_Anti_Spam\FrontEnd\FrontEnd;
    43 use Fullworks_Anti_Spam\Integrations\WS_Form\WS_Form_Action_Fullworks_Anti_Spam;
    4446/**
    4547 * Class Core
  • fullworks-anti-spam/trunk/control/class-freemius-config.php

    r3393933 r3493490  
    2626namespace Fullworks_Anti_Spam\Control;
    2727
     28if ( !defined( 'ABSPATH' ) ) {
     29    exit;
     30}
    2831use FS_Admin_Menu_Manager;
    2932use FS_Permission_Manager;
     
    4851            require_once FULLWORKS_ANTI_SPAM_PLUGIN_DIR . '/vendor/freemius/wordpress-sdk/start.php';
    4952            $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(
    6164                    'days'               => 14,
    6265                    'is_require_payment' => false,
    6366                ),
    64                 'has_affiliation' => 'selected',
    65                 'menu'            => array(
     67                'has_affiliation'  => 'selected',
     68                'menu'             => array(
    6669                    'slug'    => 'fullworks-anti-spam-settings',
    6770                    'contact' => false,
     
    7174                    ),
    7275                ),
    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,
    7579            ) );
    7680        }
     
    7882            return FULLWORKS_ANTI_SPAM_PLUGIN_DIR . 'admin/images/brand/icon-256x256.svg';
    7983        } );
    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 ) {
    9287                $permissions['fullworks'] = array(
    9388                    'id'         => 'fullworks',
     
    10196                );
    10297                return $permissions;
    103             }
    104         );
     98            } );
     99        }, 1 );
    105100        return $fwas_fs;
    106101    }
  • fullworks-anti-spam/trunk/control/class-template-loader.php

    r3393933 r3493490  
    3232namespace Fullworks_Anti_Spam\Control;
    3333
     34if ( !defined( 'ABSPATH' ) ) {
     35    exit;
     36}
    3437use Gamajo_Template_Loader;
    3538require_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  
    2626namespace Fullworks_Anti_Spam\Core;
    2727
     28if ( !defined( 'ABSPATH' ) ) {
     29    exit;
     30}
    2831use Cassandra\Exception\ValidationException;
    2932use Fullworks_Anti_Spam\Anti_Spam_Api;
  • fullworks-anti-spam/trunk/core/class-purge.php

    r3393933 r3493490  
    3333namespace Fullworks_Anti_Spam\Core;
    3434
     35if ( !defined( 'ABSPATH' ) ) {
     36    exit;
     37}
    3538use GFAPI;
    3639class Purge {
  • fullworks-anti-spam/trunk/core/class-spam-checks.php

    r3393933 r3493490  
    2626namespace Fullworks_Anti_Spam\Core;
    2727
     28if ( !defined( 'ABSPATH' ) ) {
     29    exit;
     30}
    2831use Error;
    2932use Fullworks_Anti_Spam\Data\Log;
  • fullworks-anti-spam/trunk/fullworks-anti-spam.php

    r3396029 r3493490  
    2929 * Plugin URI:        https://fullworksplugins.com/products/anti-spam/
    3030 * 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.1
     31 * Version:           2.6.2
    3232 * Author:            Fullworks
    3333 * Author URI:        https://fullworksplugins.com/
     
    4747namespace Fullworks_Anti_Spam;
    4848
     49if ( ! defined( 'ABSPATH' ) ) exit;
     50
    4951use Fullworks_Anti_Spam\Control\Core;
    5052use Fullworks_Anti_Spam\Control\Freemius_Config;
     
    6365define( 'FULLWORKS_ANTI_SPAM_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    6466
    65 define( 'FULLWORKS_ANTI_SPAM_PLUGIN_VERSION', '2.6.1' );
     67define( 'FULLWORKS_ANTI_SPAM_PLUGIN_VERSION', '2.6.2' );
    6668
    6769/**
  • fullworks-anti-spam/trunk/integrations/ws-form/class-ws-form-action-fullworks-anti-spam.php

    r3396029 r3493490  
    22
    33namespace Fullworks_Anti_Spam\Integrations\WS_Form;
     4
     5if ( ! defined( 'ABSPATH' ) ) exit;
    46
    57use \WS_Form_Action;
  • fullworks-anti-spam/trunk/readme.txt

    r3396029 r3493490  
    33Tags: anti-spam, contact form 7, spam protection, wpforms, cf7
    44Tested up to: 6.9
    5 Stable tag: 2.6.1
     5Stable tag: 2.6.2
    66License: GPLv3 or later
    77Requires PHP: 7.4
  • fullworks-anti-spam/trunk/vendor/composer/installed.php

    r3396029 r3493490  
    22    'root' => array(
    33        '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',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    5252        ),
    5353        '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',
    5757            'type' => 'wordpress-plugin',
    5858            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.