Skip to content

Commit

Permalink
Version 2.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
thefrosty authored Nov 21, 2023
2 parents ad691f2 + 5e69227 commit 19981d4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELONG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased

## 2.3.1 - 2023-11-21

* Replace deprecated `FILTER_SANITIZE_STRING` in PHP >= 8.2 with `FILTER_SANITIZE_FULL_SPECIAL_CHARS`. [#78](https://github.com/thefrosty/wp-login-locker/pull/78)

## 2.3.0 - 2023-11-01

* Add support upto PHP 8.2.
Expand Down
6 changes: 3 additions & 3 deletions wp-login-locker.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
* Description: Disable direct access to your sites /wp-login.php script, plus user notifications based on actions.
* Author: Austin Passy
* Author URI: https://github.com/thefrosty
* Version: 2.3.0
* Version: 2.3.1
* Requires at least: 6.2
* Tested up to: 6.3.2
* Tested up to: 6.4.1
* Requires PHP: 8.0
* Plugin URI: https://github.com/thefrosty/wp-login-locker
* GitHub Plugin URI: https://github.com/thefrosty/wp-login-locker
Expand Down Expand Up @@ -40,7 +40,7 @@
->add(new Login\WpLogin())
->add(new Settings())
->add(new WpCore\WpSignup())
->add(new WpSettingsApi(Settings::factory('2.3.0')))
->add(new WpSettingsApi(Settings::factory('2.3.1')))
->addOnHook(Login\Login::class, 'login_init', 5)
->addOnHook(Login\LastLoginColumns::class, 'admin_init', 10, true)
->addOnHook(UserProfile\LastLogin::class, 'admin_init', 10, true)
Expand Down

0 comments on commit 19981d4

Please sign in to comment.