diff options
author | Yury German <blueknight@gentoo.org> | 2016-02-13 16:44:37 -0500 |
---|---|---|
committer | Yury German <blueknight@gentoo.org> | 2016-02-13 16:44:37 -0500 |
commit | 092a5e8113ae914bbdd4a90f5a271b3ece1b48b4 (patch) | |
tree | e5a882e577b41284145d660a1c983204472bd88b /plugins/akismet/akismet.php | |
parent | Updating plugins easy-table, jetpack, openid, public-post preview, talbe-of-c... (diff) | |
download | blogs-gentoo-092a5e8113ae914bbdd4a90f5a271b3ece1b48b4.tar.gz blogs-gentoo-092a5e8113ae914bbdd4a90f5a271b3ece1b48b4.tar.bz2 blogs-gentoo-092a5e8113ae914bbdd4a90f5a271b3ece1b48b4.zip |
Bug 574468 forgot akismet
Diffstat (limited to 'plugins/akismet/akismet.php')
-rw-r--r-- | plugins/akismet/akismet.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/akismet/akismet.php b/plugins/akismet/akismet.php index 5cdd32a4..2c13942b 100644 --- a/plugins/akismet/akismet.php +++ b/plugins/akismet/akismet.php @@ -5,8 +5,8 @@ /* Plugin Name: Akismet Plugin URI: http://akismet.com/ -Description: Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from comment and trackback spam</strong>. It keeps your site protected from spam even while you sleep. To get started: 1) Click the "Activate" link to the left of this description, 2) <a href="http://akismet.com/get/">Sign up for an Akismet API key</a>, and 3) Go to your Akismet configuration page, and save your API key. -Version: 3.1.1 +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: 1) Click the "Activate" link to the left of this description, 2) <a href="http://akismet.com/get/">Sign up for an Akismet plan</a> to get an API key, and 3) Go to your Akismet configuration page, and save your API key. +Version: 3.1.7 Author: Automattic Author URI: http://automattic.com/wordpress-plugins/ License: GPLv2 or later @@ -27,6 +27,8 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +Copyright 2005-2015 Automattic, Inc. */ // Make sure we don't expose any info if called directly @@ -35,7 +37,7 @@ if ( !function_exists( 'add_action' ) ) { exit; } -define( 'AKISMET_VERSION', '3.1.1' ); +define( 'AKISMET_VERSION', '3.1.7' ); define( 'AKISMET__MINIMUM_WP_VERSION', '3.2' ); define( 'AKISMET__PLUGIN_URL', plugin_dir_url( __FILE__ ) ); define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); |