equal
deleted
inserted
replaced
4 */ |
4 */ |
5 /* |
5 /* |
6 Plugin Name: Akismet Anti-Spam |
6 Plugin Name: Akismet Anti-Spam |
7 Plugin URI: https://akismet.com/ |
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. |
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.0.8 |
9 Version: 4.1.2 |
10 Author: Automattic |
10 Author: Automattic |
11 Author URI: https://automattic.com/wordpress-plugins/ |
11 Author URI: https://automattic.com/wordpress-plugins/ |
12 License: GPLv2 or later |
12 License: GPLv2 or later |
13 Text Domain: akismet |
13 Text Domain: akismet |
14 */ |
14 */ |
35 if ( !function_exists( 'add_action' ) ) { |
35 if ( !function_exists( 'add_action' ) ) { |
36 echo 'Hi there! I\'m just a plugin, not much I can do when called directly.'; |
36 echo 'Hi there! I\'m just a plugin, not much I can do when called directly.'; |
37 exit; |
37 exit; |
38 } |
38 } |
39 |
39 |
40 define( 'AKISMET_VERSION', '4.0.8' ); |
40 define( 'AKISMET_VERSION', '4.1.2' ); |
41 define( 'AKISMET__MINIMUM_WP_VERSION', '4.0' ); |
41 define( 'AKISMET__MINIMUM_WP_VERSION', '4.0' ); |
42 define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); |
42 define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); |
43 define( 'AKISMET_DELETE_LIMIT', 100000 ); |
43 define( 'AKISMET_DELETE_LIMIT', 100000 ); |
44 |
44 |
45 register_activation_hook( __FILE__, array( 'Akismet', 'plugin_activation' ) ); |
45 register_activation_hook( __FILE__, array( 'Akismet', 'plugin_activation' ) ); |