Version Description
Release Date - 10 May 2017
- Fixed a bug causing JavaScript errors in some browsers.
Download this release
Release Info
Developer | cfinke |
Plugin | Akismet Anti-Spam |
Version | 3.3.2 |
Comparing to | |
See all releases |
Code changes from version 3.3.1 to 3.3.2
- _inc/akismet.js +1 -1
- akismet.php +2 -2
- readme.txt +7 -2
_inc/akismet.js
CHANGED
@@ -174,7 +174,7 @@ jQuery( function ( $ ) {
|
|
174 |
$( '.checkforspam' ).click();
|
175 |
}
|
176 |
|
177 |
-
if ( typeof
|
178 |
// Dynamically add the "X" next the the author URL links when a comment is quick-edited.
|
179 |
var comment_list_container = document.getElementById( 'the-comment-list' );
|
180 |
|
174 |
$( '.checkforspam' ).click();
|
175 |
}
|
176 |
|
177 |
+
if ( typeof MutationObserver !== 'undefined' ) {
|
178 |
// Dynamically add the "X" next the the author URL links when a comment is quick-edited.
|
179 |
var comment_list_container = document.getElementById( 'the-comment-list' );
|
180 |
|
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: 3.3.
|
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', '3.3.
|
41 |
define( 'AKISMET__MINIMUM_WP_VERSION', '3.7' );
|
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: 3.3.2
|
10 |
Author: Automattic
|
11 |
Author URI: https://automattic.com/wordpress-plugins/
|
12 |
License: GPLv2 or later
|
37 |
exit;
|
38 |
}
|
39 |
|
40 |
+
define( 'AKISMET_VERSION', '3.3.2' );
|
41 |
define( 'AKISMET__MINIMUM_WP_VERSION', '3.7' );
|
42 |
define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
43 |
define( 'AKISMET_DELETE_LIMIT', 100000 );
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: matt, ryan, andy, mdawaffe, tellyworth, josephscott, lessbloat, eoigal, cfinke, automattic, jgs
|
3 |
Tags: akismet, comments, spam, antispam, anti-spam, anti spam, comment moderation, comment spam, contact form spam, spam comments
|
4 |
Requires at least: 3.7
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 3.3.
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
Akismet checks your comments and contact form submissions against our global database of spam to protect you and your site from malicious content.
|
@@ -30,6 +30,11 @@ Upload the Akismet plugin to your blog, Activate it, then enter your [Akismet.co
|
|
30 |
|
31 |
== Changelog ==
|
32 |
|
|
|
|
|
|
|
|
|
|
|
33 |
= 3.3.1 =
|
34 |
*Release Date - 2 May 2017*
|
35 |
|
2 |
Contributors: matt, ryan, andy, mdawaffe, tellyworth, josephscott, lessbloat, eoigal, cfinke, automattic, jgs
|
3 |
Tags: akismet, comments, spam, antispam, anti-spam, anti spam, comment moderation, comment spam, contact form spam, spam comments
|
4 |
Requires at least: 3.7
|
5 |
+
Tested up to: 4.8
|
6 |
+
Stable tag: 3.3.2
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
Akismet checks your comments and contact form submissions against our global database of spam to protect you and your site from malicious content.
|
30 |
|
31 |
== Changelog ==
|
32 |
|
33 |
+
= 3.3.2 =
|
34 |
+
*Release Date - 10 May 2017*
|
35 |
+
|
36 |
+
* Fixed a bug causing JavaScript errors in some browsers.
|
37 |
+
|
38 |
= 3.3.1 =
|
39 |
*Release Date - 2 May 2017*
|
40 |
|