Changeset 3085309
- Timestamp:
- 05/12/2024 05:32:44 PM (23 months ago)
- Location:
- traffic-jammer
- Files:
-
- 4 edited
- 1 copied
-
tags/1.4.1 (copied) (copied from traffic-jammer/trunk)
-
tags/1.4.1/readme.txt (modified) (1 diff)
-
tags/1.4.1/traffic-jammer.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/traffic-jammer.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
traffic-jammer/tags/1.4.1/readme.txt
r3085306 r3085309 5 5 Requires at least: 5.2 6 6 Tested up to: 6.5.3 7 Stable tag: 1.4. 07 Stable tag: 1.4.1 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later -
traffic-jammer/tags/1.4.1/traffic-jammer.php
r3085306 r3085309 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.4. 011 * Version: 1.4.1 12 12 * Requires at least: 5.2 13 13 * Requires PHP: 7.4 … … 646 646 $threshold = 100; 647 647 } 648 648 649 echo '<select name="wp_traffic_jammer_abuseipdb[abuseipdb_threshold]">'; 649 650 for ( $i = 50; $i <= 100; $i = $i + 10 ) { 650 651 echo '<option value="' . esc_html( $i ) . '"'; 651 if ( $threshold == =$i ) {652 if ( $threshold == $i ) { 652 653 echo ' selected '; 653 654 } -
traffic-jammer/trunk/readme.txt
r3085306 r3085309 5 5 Requires at least: 5.2 6 6 Tested up to: 6.5.3 7 Stable tag: 1.4. 07 Stable tag: 1.4.1 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later -
traffic-jammer/trunk/traffic-jammer.php
r3085306 r3085309 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.4. 011 * Version: 1.4.1 12 12 * Requires at least: 5.2 13 13 * Requires PHP: 7.4 … … 646 646 $threshold = 100; 647 647 } 648 648 649 echo '<select name="wp_traffic_jammer_abuseipdb[abuseipdb_threshold]">'; 649 650 for ( $i = 50; $i <= 100; $i = $i + 10 ) { 650 651 echo '<option value="' . esc_html( $i ) . '"'; 651 if ( $threshold == =$i ) {652 if ( $threshold == $i ) { 652 653 echo ' selected '; 653 654 }
Note: See TracChangeset
for help on using the changeset viewer.