Changeset 3264080
- Timestamp:
- 03/30/2025 12:40:15 PM (12 months ago)
- Location:
- traffic-jammer
- Files:
-
- 4 edited
- 1 copied
-
tags/1.4.8 (copied) (copied from traffic-jammer/trunk)
-
tags/1.4.8/readme.txt (modified) (2 diffs)
-
tags/1.4.8/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.8/readme.txt
r3263558 r3264080 3 3 Donate link: https://www.paypal.com/donate/?hosted_button_id=8M46X2F79WATW 4 4 Tags: pantheon, security, block ip, bots, login 5 Requires at least: 5. 25 Requires at least: 5.6 6 6 Tested up to: 6.7.2 7 Stable tag: 1.4. 77 Stable tag: 1.4.8 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 59 59 60 60 == Changelog == 61 = 1.4. 6=61 = 1.4.7 = 62 62 * fix bug on the report 63 63 -
traffic-jammer/tags/1.4.8/traffic-jammer.php
r3263541 r3264080 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. 712 * Requires at least: 5. 211 * Version: 1.4.8 12 * Requires at least: 5.6 13 13 * Requires PHP: 7.4 14 14 * Author: Carey Dayrit … … 103 103 wp_clear_scheduled_hook( 'trafficjammer_cron_hook' ); 104 104 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 106 106 } 107 107 register_deactivation_hook( __FILE__, 'trafficjammer_deactivate' ); -
traffic-jammer/trunk/readme.txt
r3263558 r3264080 3 3 Donate link: https://www.paypal.com/donate/?hosted_button_id=8M46X2F79WATW 4 4 Tags: pantheon, security, block ip, bots, login 5 Requires at least: 5. 25 Requires at least: 5.6 6 6 Tested up to: 6.7.2 7 Stable tag: 1.4. 77 Stable tag: 1.4.8 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 59 59 60 60 == Changelog == 61 = 1.4. 6=61 = 1.4.7 = 62 62 * fix bug on the report 63 63 -
traffic-jammer/trunk/traffic-jammer.php
r3263541 r3264080 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. 712 * Requires at least: 5. 211 * Version: 1.4.8 12 * Requires at least: 5.6 13 13 * Requires PHP: 7.4 14 14 * Author: Carey Dayrit … … 103 103 wp_clear_scheduled_hook( 'trafficjammer_cron_hook' ); 104 104 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 106 106 } 107 107 register_deactivation_hook( __FILE__, 'trafficjammer_deactivate' );
Note: See TracChangeset
for help on using the changeset viewer.