Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update changelog and tested up to version #619

Merged
merged 5 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## Changelog ##

### 2.11.7 ###

* **English**
* Tweak: Use SCRIPT_NAME instead of REQUEST_URI to check path

* **Deutsch**
* Tweak: Verwende SCRIPT_NAME anstelle von REQUEST_URI, um den Pfad zu prüfen

### 2.11.6 ###
* **English**
* Fix: Delete missed out option on uninstall (Thanks @okvee!)
Expand Down
4 changes: 3 additions & 1 deletion antispam_bee.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
**/
Expand Down Expand Up @@ -1127,6 +1127,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
Expand Down Expand Up @@ -1161,6 +1162,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.
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
* Tags: anti-spam, antispam, block spam, comment, comments, comment spam, pingback, spam, spam filter, trackback, GDPR
* Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=TD4AMD2D8EMZW
* Requires at least: 4.5
* Tested up to: 6.5
* Tested up to: 6.6
* 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

Expand Down Expand Up @@ -95,6 +95,9 @@ 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

### 2.11.6 ###
* Fix: Delete missed out option on uninstall (Thanks @okvee!)
* Tweak: Minor i18n improvements (Thanks Pedro!)
Expand Down
Loading