Plugin Directory

Changeset 3264080


Ignore:
Timestamp:
03/30/2025 12:40:15 PM (12 months ago)
Author:
slick2
Message:

Update to version 1.4.8 from GitHub

Location:
traffic-jammer
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • traffic-jammer/tags/1.4.8/readme.txt

    r3263558 r3264080  
    33Donate link: https://www.paypal.com/donate/?hosted_button_id=8M46X2F79WATW
    44Tags: pantheon, security, block ip, bots, login
    5 Requires at least: 5.2
     5Requires at least: 5.6
    66Tested up to: 6.7.2
    7 Stable tag: 1.4.7
     7Stable tag: 1.4.8
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    5959
    6060== Changelog ==
    61 = 1.4.6 =
     61= 1.4.7 =
    6262 * fix bug on the report
    6363
  • traffic-jammer/tags/1.4.8/traffic-jammer.php

    r3263541 r3264080  
    99 * Plugin URI:          https://wordpress.org/plugins/traffic-jammer/
    1010 * Description:         WordPress plugin to block IP and bots that causes malicious traffic.
    11  * Version:             1.4.7
    12  * Requires at least:   5.2
     11 * Version:             1.4.8
     12 * Requires at least:   5.6
    1313 * Requires PHP:        7.4
    1414 * Author:              Carey Dayrit
     
    103103    wp_clear_scheduled_hook( 'trafficjammer_cron_hook' );
    104104    remove_action( 'init', 'trafficjammer_traffic_live' );
    105     $wpdb->query( $wpdb->prepare( 'TRUNCATE TABLE %s', $table_name ) );
     105    $wpdb->query( 'TRUNCATE TABLE  ' . $table_name  ); //phpcs:ignore
    106106}
    107107register_deactivation_hook( __FILE__, 'trafficjammer_deactivate' );
  • traffic-jammer/trunk/readme.txt

    r3263558 r3264080  
    33Donate link: https://www.paypal.com/donate/?hosted_button_id=8M46X2F79WATW
    44Tags: pantheon, security, block ip, bots, login
    5 Requires at least: 5.2
     5Requires at least: 5.6
    66Tested up to: 6.7.2
    7 Stable tag: 1.4.7
     7Stable tag: 1.4.8
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    5959
    6060== Changelog ==
    61 = 1.4.6 =
     61= 1.4.7 =
    6262 * fix bug on the report
    6363
  • traffic-jammer/trunk/traffic-jammer.php

    r3263541 r3264080  
    99 * Plugin URI:          https://wordpress.org/plugins/traffic-jammer/
    1010 * Description:         WordPress plugin to block IP and bots that causes malicious traffic.
    11  * Version:             1.4.7
    12  * Requires at least:   5.2
     11 * Version:             1.4.8
     12 * Requires at least:   5.6
    1313 * Requires PHP:        7.4
    1414 * Author:              Carey Dayrit
     
    103103    wp_clear_scheduled_hook( 'trafficjammer_cron_hook' );
    104104    remove_action( 'init', 'trafficjammer_traffic_live' );
    105     $wpdb->query( $wpdb->prepare( 'TRUNCATE TABLE %s', $table_name ) );
     105    $wpdb->query( 'TRUNCATE TABLE  ' . $table_name  ); //phpcs:ignore
    106106}
    107107register_deactivation_hook( __FILE__, 'trafficjammer_deactivate' );
Note: See TracChangeset for help on using the changeset viewer.