Changeset 3085306
- Timestamp:
- 05/12/2024 05:06:38 PM (23 months ago)
- Location:
- traffic-jammer
- Files:
-
- 4 edited
- 1 copied
-
tags/1.4.0 (copied) (copied from traffic-jammer/trunk)
-
tags/1.4.0/readme.txt (modified) (2 diffs)
-
tags/1.4.0/traffic-jammer.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/traffic-jammer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
traffic-jammer/tags/1.4.0/readme.txt
r3067918 r3085306 4 4 Tags: pantheon, security, block ip, bots, login 5 5 Requires at least: 5.2 6 Tested up to: 6.5 7 Stable tag: 1. 3.36 Tested up to: 6.5.3 7 Stable tag: 1.4.0 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 54 54 55 55 == Changelog == 56 = 1.4.0 57 * added threshold 50 and 60 options 58 * tested working with 6.5.3 59 56 60 = 1.3.3 = 57 61 * revised readme.txt -
traffic-jammer/tags/1.4.0/traffic-jammer.php
r3067918 r3085306 9 9 * Plugin URI: https://wordpress.org/plugins/traffic-jammer/ 10 10 * Description: WordPress plugin to block IP and bots that causes malicious traffic. 11 * Version: 1. 3.311 * Version: 1.4.0 12 12 * Requires at least: 5.2 13 13 * Requires PHP: 7.4 … … 647 647 } 648 648 echo '<select name="wp_traffic_jammer_abuseipdb[abuseipdb_threshold]">'; 649 for ( $i = 70; $i <= 100; $i = $i + 10 ) {649 for ( $i = 50; $i <= 100; $i = $i + 10 ) { 650 650 echo '<option value="' . esc_html( $i ) . '"'; 651 651 if ( $threshold === $i ) { -
traffic-jammer/trunk/readme.txt
r3067918 r3085306 4 4 Tags: pantheon, security, block ip, bots, login 5 5 Requires at least: 5.2 6 Tested up to: 6.5 7 Stable tag: 1. 3.36 Tested up to: 6.5.3 7 Stable tag: 1.4.0 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 54 54 55 55 == Changelog == 56 = 1.4.0 57 * added threshold 50 and 60 options 58 * tested working with 6.5.3 59 56 60 = 1.3.3 = 57 61 * revised readme.txt -
traffic-jammer/trunk/traffic-jammer.php
r3067918 r3085306 9 9 * Plugin URI: https://wordpress.org/plugins/traffic-jammer/ 10 10 * Description: WordPress plugin to block IP and bots that causes malicious traffic. 11 * Version: 1. 3.311 * Version: 1.4.0 12 12 * Requires at least: 5.2 13 13 * Requires PHP: 7.4 … … 647 647 } 648 648 echo '<select name="wp_traffic_jammer_abuseipdb[abuseipdb_threshold]">'; 649 for ( $i = 70; $i <= 100; $i = $i + 10 ) {649 for ( $i = 50; $i <= 100; $i = $i + 10 ) { 650 650 echo '<option value="' . esc_html( $i ) . '"'; 651 651 if ( $threshold === $i ) {
Note: See TracChangeset
for help on using the changeset viewer.