Changeset 3163798
- Timestamp:
- 10/07/2024 02:09:52 AM (17 months ago)
- Location:
- akismet/trunk
- Files:
-
- 2 edited
-
akismet.php (modified) (2 diffs)
-
class.akismet-admin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
akismet/trunk/akismet.php
r3157204 r3163798 7 7 Plugin URI: https://akismet.com/ 8 8 Description: Used by millions, Akismet is quite possibly the best way in the world to <strong>protect your blog from spam</strong>. Akismet Anti-spam 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: 5.4.0a 19 Version: 5.4.0a2 10 10 Requires at least: 5.8 11 11 Requires PHP: 5.6.20 … … 40 40 } 41 41 42 define( 'AKISMET_VERSION', '5.4.0a 1' );42 define( 'AKISMET_VERSION', '5.4.0a2' ); 43 43 define( 'AKISMET__MINIMUM_WP_VERSION', '5.8' ); 44 44 define( 'AKISMET__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -
akismet/trunk/class.akismet-admin.php
r3112083 r3163798 1119 1119 } 1120 1120 1121 if ( ! isset( self::$notices['status'] ) && in_array( $akismet_user->status, array( 'cancelled', 'suspended', 'missing', 'no-sub' ) ) ) {1121 if ( ! Akismet::predefined_api_key() && ! isset( self::$notices['status'] ) && in_array( $akismet_user->status, array( 'cancelled', 'suspended', 'missing', 'no-sub' ) ) ) { 1122 1122 $notices[] = array( 'type' => $akismet_user->status ); 1123 1123 }
Note: See TracChangeset
for help on using the changeset viewer.