Plugin Directory

Changeset 3085309


Ignore:
Timestamp:
05/12/2024 05:32:44 PM (23 months ago)
Author:
slick2
Message:

Update to version 1.4.1 from GitHub

Location:
traffic-jammer
Files:
4 edited
1 copied

Legend:

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

    r3085306 r3085309  
    55Requires at least: 5.2
    66Tested up to: 6.5.3
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.
    88Requires PHP: 7.4
    99License: GPLv2 or later
  • traffic-jammer/tags/1.4.1/traffic-jammer.php

    r3085306 r3085309  
    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.0
     11 * Version:             1.4.1
    1212 * Requires at least:   5.2
    1313 * Requires PHP:        7.4
     
    646646        $threshold = 100;
    647647    }
     648
    648649    echo '<select name="wp_traffic_jammer_abuseipdb[abuseipdb_threshold]">';
    649650    for ( $i = 50; $i <= 100; $i = $i + 10 ) {
    650651        echo '<option value="' . esc_html( $i ) . '"';
    651         if ( $threshold === $i ) {
     652        if ( $threshold == $i ) {
    652653            echo ' selected ';
    653654        }
  • traffic-jammer/trunk/readme.txt

    r3085306 r3085309  
    55Requires at least: 5.2
    66Tested up to: 6.5.3
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.
    88Requires PHP: 7.4
    99License: GPLv2 or later
  • traffic-jammer/trunk/traffic-jammer.php

    r3085306 r3085309  
    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.0
     11 * Version:             1.4.1
    1212 * Requires at least:   5.2
    1313 * Requires PHP:        7.4
     
    646646        $threshold = 100;
    647647    }
     648
    648649    echo '<select name="wp_traffic_jammer_abuseipdb[abuseipdb_threshold]">';
    649650    for ( $i = 50; $i <= 100; $i = $i + 10 ) {
    650651        echo '<option value="' . esc_html( $i ) . '"';
    651         if ( $threshold === $i ) {
     652        if ( $threshold == $i ) {
    652653            echo ' selected ';
    653654        }
Note: See TracChangeset for help on using the changeset viewer.