Version Description
To upgrade BBQ, remove old version and replace with new version. Or just click "Update" from the Plugins screen and let WordPress do it for you automatically. Nothing else needs done.
Note: uninstalling/deleting the plugin via the WP Plugins screen results in the removal of all settings and email data from the WP database.
Download this release
Release Info
Developer | specialk |
Plugin | BBQ: Block Bad Queries |
Version | 20220122 |
Comparing to | |
See all releases |
Code changes from version 20220118 to 20220122
- block-bad-queries.php +4 -4
- readme.txt +7 -2
block-bad-queries.php
CHANGED
@@ -10,8 +10,8 @@
|
|
10 |
Donate link: https://monzillamedia.com/donate.html
|
11 |
Requires at least: 4.6
|
12 |
Tested up to: 5.9
|
13 |
-
Stable tag:
|
14 |
-
Version:
|
15 |
Requires PHP: 5.6.20
|
16 |
Text Domain: block-bad-queries
|
17 |
Domain Path: /languages
|
@@ -37,7 +37,7 @@
|
|
37 |
|
38 |
if (!defined('ABSPATH')) die();
|
39 |
|
40 |
-
if (!defined('BBQ_VERSION')) define('BBQ_VERSION', '
|
41 |
if (!defined('BBQ_FILE')) define('BBQ_FILE', plugin_basename(__FILE__));
|
42 |
if (!defined('BBQ_DIR')) define('BBQ_DIR', plugin_dir_path(__FILE__));
|
43 |
if (!defined('BBQ_URL')) define('BBQ_URL', plugins_url('/block-bad-queries/'));
|
@@ -63,7 +63,7 @@ function bbq_core() {
|
|
63 |
|
64 |
$long_requests = apply_filters('bbq_long_requests', true);
|
65 |
$match_logging = apply_filters('bbq_match_logging', false);
|
66 |
-
$post_scanning = apply_filters('bbq_post_scanning',
|
67 |
|
68 |
if (isset($_SERVER['REQUEST_URI']) && !empty($_SERVER['REQUEST_URI'])) $request_uri_string = $_SERVER['REQUEST_URI'];
|
69 |
if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) $query_string_string = $_SERVER['QUERY_STRING'];
|
10 |
Donate link: https://monzillamedia.com/donate.html
|
11 |
Requires at least: 4.6
|
12 |
Tested up to: 5.9
|
13 |
+
Stable tag: 20220122
|
14 |
+
Version: 20220122
|
15 |
Requires PHP: 5.6.20
|
16 |
Text Domain: block-bad-queries
|
17 |
Domain Path: /languages
|
37 |
|
38 |
if (!defined('ABSPATH')) die();
|
39 |
|
40 |
+
if (!defined('BBQ_VERSION')) define('BBQ_VERSION', '20220122');
|
41 |
if (!defined('BBQ_FILE')) define('BBQ_FILE', plugin_basename(__FILE__));
|
42 |
if (!defined('BBQ_DIR')) define('BBQ_DIR', plugin_dir_path(__FILE__));
|
43 |
if (!defined('BBQ_URL')) define('BBQ_URL', plugins_url('/block-bad-queries/'));
|
63 |
|
64 |
$long_requests = apply_filters('bbq_long_requests', true);
|
65 |
$match_logging = apply_filters('bbq_match_logging', false);
|
66 |
+
$post_scanning = apply_filters('bbq_post_scanning', false);
|
67 |
|
68 |
if (isset($_SERVER['REQUEST_URI']) && !empty($_SERVER['REQUEST_URI'])) $request_uri_string = $_SERVER['REQUEST_URI'];
|
69 |
if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) $query_string_string = $_SERVER['QUERY_STRING'];
|
readme.txt
CHANGED
@@ -10,8 +10,8 @@ Contributors: specialk, aldolat, WpBlogHost, jameswilkes, juliobox, lernerconsul
|
|
10 |
Donate link: https://monzillamedia.com/donate.html
|
11 |
Requires at least: 4.6
|
12 |
Tested up to: 5.9
|
13 |
-
Stable tag:
|
14 |
-
Version:
|
15 |
Requires PHP: 5.6.20
|
16 |
Text Domain: block-bad-queries
|
17 |
Domain Path: /languages
|
@@ -252,6 +252,11 @@ Links, tweets and likes also appreciated. Thank you! :)
|
|
252 |
If you like BBQ, please take a moment to [give a 5-star rating](https://wordpress.org/support/plugin/block-bad-queries/reviews/?rate=5#new-post). It helps to keep development and support going strong. Thank you!
|
253 |
|
254 |
|
|
|
|
|
|
|
|
|
|
|
255 |
**2022/01/18**
|
256 |
|
257 |
* Refactors for improved performance
|
10 |
Donate link: https://monzillamedia.com/donate.html
|
11 |
Requires at least: 4.6
|
12 |
Tested up to: 5.9
|
13 |
+
Stable tag: 20220122
|
14 |
+
Version: 20220122
|
15 |
Requires PHP: 5.6.20
|
16 |
Text Domain: block-bad-queries
|
17 |
Domain Path: /languages
|
252 |
If you like BBQ, please take a moment to [give a 5-star rating](https://wordpress.org/support/plugin/block-bad-queries/reviews/?rate=5#new-post). It helps to keep development and support going strong. Thank you!
|
253 |
|
254 |
|
255 |
+
**2022/01/22**
|
256 |
+
|
257 |
+
* Disables POST data scanning by default
|
258 |
+
* Tests on WordPress 5.9
|
259 |
+
|
260 |
**2022/01/18**
|
261 |
|
262 |
* Refactors for improved performance
|