diff options
author | Yury German <blueknight@gentoo.org> | 2022-06-15 12:23:54 -0400 |
---|---|---|
committer | Yury German <blueknight@gentoo.org> | 2022-06-15 12:23:54 -0400 |
commit | d70aabe9576a2aa12d55e8649f04c3a853de902a (patch) | |
tree | 31baa2d7c7bf8acddc5d5e307ad6b6dda6fc23c2 /plugins/akismet/akismet.php | |
parent | Openid-3.6.1 and jetpack-11.0 upgrade (diff) | |
download | blogs-gentoo-d70aabe9576a2aa12d55e8649f04c3a853de902a.tar.gz blogs-gentoo-d70aabe9576a2aa12d55e8649f04c3a853de902a.tar.bz2 blogs-gentoo-d70aabe9576a2aa12d55e8649f04c3a853de902a.zip |
Signed-off-by: Yury German <blueknight@gentoo.org>
Diffstat (limited to 'plugins/akismet/akismet.php')
-rw-r--r-- | plugins/akismet/akismet.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/akismet/akismet.php b/plugins/akismet/akismet.php index 2175a913..e6b45ba7 100644 --- a/plugins/akismet/akismet.php +++ b/plugins/akismet/akismet.php @@ -6,7 +6,7 @@ Plugin Name: Akismet Anti-Spam Plugin URI: https://akismet.com/ Description: Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. It keeps your site protected even while you sleep. To get started: activate the Akismet plugin and then go to your Akismet Settings page to set up your API key. -Version: 4.2.1 +Version: 4.2.4 Author: Automattic Author URI: https://automattic.com/wordpress-plugins/ License: GPLv2 or later @@ -37,10 +37,10 @@ if ( !function_exists( 'add_action' ) ) { exit; } -define( 'AKISMET_VERSION', '4.2.1' ); +define( 'AKISMET_VERSION', '4.2.4' ); define( 'AKISMET__MINIMUM_WP_VERSION', '5.0' ); define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -define( 'AKISMET_DELETE_LIMIT', 100000 ); +define( 'AKISMET_DELETE_LIMIT', 10000 ); register_activation_hook( __FILE__, array( 'Akismet', 'plugin_activation' ) ); register_deactivation_hook( __FILE__, array( 'Akismet', 'plugin_deactivation' ) ); |