Plugin Directory

Changeset 3377862


Ignore:
Timestamp:
10/14/2025 05:38:45 AM (4 months ago)
Author:
TechGasp
Message:

Version 7.6.8

Location:
spam-master
Files:
138 added
5 edited

Legend:

Unmodified
Added
Removed
  • spam-master/trunk/class-spammaster.php

    r3375243 r3377862  
    33 * Plugin Name: Spam Master
    44 * Plugin URI: https://www.spammaster.org
    5  * Version: 7.6.7
     5 * Version: 7.6.8
    66 * Author: TechGasp
    77 * Author URI: https://www.techgasp.com
     
    3434
    3535// Define plugin constants.
    36 define( 'SPAM_MASTER_VERSION', '7.6.7' );
     36define( 'SPAM_MASTER_VERSION', '7.6.8' );
    3737define( 'SPAM_MASTER_NAME', 'Spam Master' );
    3838define( 'SPAM_MASTER_DOMAIN', 'SpamMaster.org' );
  • spam-master/trunk/includes/controllers/class-spammasteradminmenutablecontroller.php

    r3375243 r3377862  
    186186                                    global $wpdb; // For legacy deletion (can refactor to repo).
    187187                                    // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.InterpolatedNotPrepared
    188                                     $wpdb->query( $wpdb->prepare( "DELETE FROM {$this->repo->table_name} WHERE id = %s", $buffer_id ) );
     188                                    $wpdb->query( $wpdb->prepare( "DELETE FROM {$this->repo->get_table_name} WHERE id = %s", $buffer_id ) );
    189189                                    $spam_master_is_buffer = 'YES';
    190190                                } else {
  • spam-master/trunk/includes/controllers/class-spammasteradmintableinactivecontroller.php

    r3375243 r3377862  
    9090            global $wpdb;
    9191            // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching, WordPress.DB.PreparedSQL.InterpolatedNotPrepared
    92             $spam_master_logs_count = (string) $wpdb->get_var( "SELECT COUNT(*) FROM {$this->repo->table_name}" );
     92            $spam_master_logs_count = (string) $wpdb->get_var( "SELECT COUNT(*) FROM {$this->repo->get_table_name}" );
    9393            if ( empty( $spam_master_logs_count ) ) {
    9494                $spam_master_logs_count = '0';
  • spam-master/trunk/includes/controllers/class-spammasterkeycontroller.php

    r3375243 r3377862  
    338338                    if ( '1' === $spama ) {
    339339                        $spam_master_action_controller = new SpamMasterActionController( $this->repo );
    340                         $spam_master_action_controller->spammasteract( $spama );
     340                        $spam_master_action_controller->spammastergetact( $spama );
    341341                    }
    342342                }
  • spam-master/trunk/readme.txt

    r3375243 r3377862  
    55Tested up to: 6.8.3
    66Requires PHP: 7.0
    7 Stable tag: 7.6.7
     7Stable tag: 7.6.8
    88License: GPLv2 or later
    99
     
    6767Spam Master is developed by an EU company and fully complies with GDPR. No data is shared with third parties. [Privacy Policy](https://www.spammaster.org/privacy-policy/)
    6868
    69 == Pro License ==
    70 
    71 Upgrade to Pro for premium server cluster connections, faster spam checking, and priority support. [Learn More](https://www.techgasp.com/downloads/spam-master-license/)
    72 
    7369== Try Online Demo ==
    7470
     
    111107
    112108== Changelog ==
     109
     110= 7.6.8 =
     111* Number format links total blocks number
     112* Fixing error of type E_ERROR was caused in line 188 of spammasteradminmenutablecontroller
     113* Fixing undefined method spammasteract
    113114
    114115= 7.6.7 =
Note: See TracChangeset for help on using the changeset viewer.