diff --git a/CHANGELOG.md b/CHANGELOG.md index 880e2ac..6f15609 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ ## Changelog ## +### 2.11.7 ### + +* **English** + * Tweak: Use SCRIPT_NAME instead of REQUEST_URI to check path + * Fix: Remove `add_reasons_to_defaults()` from general initialization for better WordPress 6.7 compatibility + * Maintenance: Tested up to WordPress 6.7 + +* **Deutsch** + * Tweak: Verwende SCRIPT_NAME anstelle von REQUEST_URI, um den Pfad zu prüfen + * Fix: Entfernen von `add_reasons_to_defaults()` von der allgemeinen Initialisierung für bessere WordPress 6.7 Kompatibilität + * Wartung: Getestet mit WordPress 6.7 + ### 2.11.6 ### * **English** * Fix: Delete missed out option on uninstall (Thanks @okvee!) diff --git a/antispam_bee.php b/antispam_bee.php index acadcaa..6b9e98e 100755 --- a/antispam_bee.php +++ b/antispam_bee.php @@ -9,7 +9,7 @@ * Domain Path: /lang * License: GPLv2 or later * License URI: http://www.gnu.org/licenses/gpl-2.0.html - * Version: 2.11.6 + * Version: 2.11.7 * * @package Antispam Bee **/ @@ -1117,6 +1117,7 @@ public static function upgrade_notice( $data ) { * * @since 0.1 * @since 2.6.3 + * @since 2.11.7 Switching from REQUEST_URI to SCRIPT_NAME for the check */ public static function precheck_incoming_request() { // phpcs:disable WordPress.Security.NonceVerification.Missing @@ -1151,6 +1152,7 @@ public static function precheck_incoming_request() { * @since 0.1 * @since 2.6.3 * @since 2.10.0 Refactoring of code if pings are allowed and if is ping + * @since 2.11.7 Switching from REQUEST_URI to SCRIPT_NAME for the check * * @param array $comment Untreated comment. * @return array $comment Treated comment. diff --git a/readme.txt b/readme.txt index aa2fd5c..a07ec8e 100755 --- a/readme.txt +++ b/readme.txt @@ -4,9 +4,9 @@ 4 * Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=TD4AMD2D8EMZW * Requires at least: 4.6 -* Tested up to: 6.5 +* Tested up to: 6.7 * Requires PHP: 5.2 -* Stable tag: 2.11.6 +* Stable tag: 2.11.7 * License: GPLv2 or later * License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -96,6 +96,11 @@ A complete documentation is available on [pluginkollektiv.org](https://antispamb ## Changelog ## +### 2.11.7 ### + * Tweak: Use SCRIPT_NAME instead of REQUEST_URI to check path + * Fix: Remove `add_reasons_to_defaults()` from general initialization for better WordPress 6.7 compatibility + * Maintenance: Tested up to WordPress 6.7 + ### 2.11.6 ### * Fix: Delete missed out option on uninstall (Thanks @okvee!) * Tweak: Minor i18n improvements (Thanks Pedro!)