Akismet Anti-Spam - Version 4.1.12

Version Description

Release Date - 3 September 2021

  • Fixed "Use of undefined constant" notice.
  • Improved styling of alert notices.
Download this release

Release Info

Developer cfinke
Plugin Icon 128x128 Akismet Anti-Spam
Version 4.1.12
Comparing to
See all releases

Code changes from version 4.1.11 to 4.1.12

Files changed (4) hide show
  1. _inc/akismet.css +2 -5
  2. akismet.php +2 -2
  3. class.akismet.php +1 -1
  4. readme.txt +7 -1
_inc/akismet.css CHANGED
@@ -100,12 +100,9 @@ table.comments td.comment p a:after {
100
  margin-top: .5rem;
101
  }
102
  .akismet-alert {
103
- border: 1px solid #e5e5e5;
104
  padding: 0.4em 1em 1.4em 1em;
105
- border-radius: 3px;
106
- -webkit-border-radius: 3px;
107
- border-width: 1px;
108
- border-style: solid;
109
  }
110
 
111
  .akismet-alert h3.akismet-key-status {
100
  margin-top: .5rem;
101
  }
102
  .akismet-alert {
 
103
  padding: 0.4em 1em 1.4em 1em;
104
+ box-sizing: border-box;
105
+ box-shadow: 0 0 0 1px rgba(200, 215, 225, 0.5), 0 1px 2px #e9eff3;
 
 
106
  }
107
 
108
  .akismet-alert h3.akismet-key-status {
akismet.php CHANGED
@@ -6,7 +6,7 @@
6
  Plugin Name: Akismet Anti-Spam
7
  Plugin URI: https://akismet.com/
8
  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.
9
- Version: 4.1.11
10
  Author: Automattic
11
  Author URI: https://automattic.com/wordpress-plugins/
12
  License: GPLv2 or later
@@ -37,7 +37,7 @@ if ( !function_exists( 'add_action' ) ) {
37
  exit;
38
  }
39
 
40
- define( 'AKISMET_VERSION', '4.1.11' );
41
  define( 'AKISMET__MINIMUM_WP_VERSION', '4.0' );
42
  define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
43
  define( 'AKISMET_DELETE_LIMIT', 100000 );
6
  Plugin Name: Akismet Anti-Spam
7
  Plugin URI: https://akismet.com/
8
  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.
9
+ Version: 4.1.12
10
  Author: Automattic
11
  Author URI: https://automattic.com/wordpress-plugins/
12
  License: GPLv2 or later
37
  exit;
38
  }
39
 
40
+ define( 'AKISMET_VERSION', '4.1.12' );
41
  define( 'AKISMET__MINIMUM_WP_VERSION', '4.0' );
42
  define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
43
  define( 'AKISMET_DELETE_LIMIT', 100000 );
class.akismet.php CHANGED
@@ -418,7 +418,7 @@ class Akismet {
418
  do_action( 'akismet_delete_comment_batch', count( $comment_ids ) );
419
 
420
  foreach ( $comment_ids as $comment_id ) {
421
- do_action( 'deleted_comment', comment_id );
422
  }
423
  }
424
 
418
  do_action( 'akismet_delete_comment_batch', count( $comment_ids ) );
419
 
420
  foreach ( $comment_ids as $comment_id ) {
421
+ do_action( 'deleted_comment', $comment_id );
422
  }
423
  }
424
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: matt, ryan, andy, mdawaffe, tellyworth, josephscott, lessbloat, eo
3
  Tags: comments, spam, antispam, anti-spam, contact form, anti spam, comment moderation, comment spam, contact form spam, spam comments
4
  Requires at least: 4.6
5
  Tested up to: 5.8
6
- Stable tag: 4.1.11
7
  License: GPLv2 or later
8
 
9
  The best anti-spam protection to block spam comments and spam in a contact form. The most trusted antispam solution for WordPress and WooCommerce.
@@ -30,6 +30,12 @@ Upload the Akismet plugin to your blog, activate it, and then enter your Akismet
30
 
31
  == Changelog ==
32
 
 
 
 
 
 
 
33
  = 4.1.11 =
34
  *Release Date - 23 August 2021*
35
 
3
  Tags: comments, spam, antispam, anti-spam, contact form, anti spam, comment moderation, comment spam, contact form spam, spam comments
4
  Requires at least: 4.6
5
  Tested up to: 5.8
6
+ Stable tag: 4.1.12
7
  License: GPLv2 or later
8
 
9
  The best anti-spam protection to block spam comments and spam in a contact form. The most trusted antispam solution for WordPress and WooCommerce.
30
 
31
  == Changelog ==
32
 
33
+ = 4.1.12 =
34
+ *Release Date - 3 September 2021*
35
+
36
+ * Fixed "Use of undefined constant" notice.
37
+ * Improved styling of alert notices.
38
+
39
  = 4.1.11 =
40
  *Release Date - 23 August 2021*
41